mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Split out entity creation from view pages (#1884)
* Split performerCreate page into separate page * Split studioCreate into a separate page * Remove Partial types from performer/studio * Split tagCreate into a separate page * Split movieCreate into a separate page * Split out galleryCreate into its own page * Add loader to scene page * Fix performer name fallback * Fix movie layout shift * Fix prompt comment and switch studio prompt to localized string
This commit is contained in:
@@ -7,7 +7,7 @@ import { RatingStars } from "src/components/Scenes/SceneDetails/RatingStars";
|
||||
import { TextField, URLField } from "src/utils/field";
|
||||
|
||||
interface IStudioDetailsPanel {
|
||||
studio: Partial<GQL.StudioDataFragment>;
|
||||
studio: GQL.StudioDataFragment;
|
||||
}
|
||||
|
||||
export const StudioDetailsPanel: React.FC<IStudioDetailsPanel> = ({
|
||||
@@ -31,7 +31,7 @@ export const StudioDetailsPanel: React.FC<IStudioDetailsPanel> = ({
|
||||
}
|
||||
|
||||
function renderTagsList() {
|
||||
if (!studio?.aliases?.length) {
|
||||
if (!studio.aliases?.length) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user