mirror of
https://github.com/stashapp/stash.git
synced 2026-05-09 05:05:29 +02:00
Render scraper menu buttons at top of form instead of in navbar
This improves visibility and accessibility of scraping features by placing them in a more prominent location.
This commit is contained in:
parent
0d24f4b694
commit
54fc04086f
1 changed files with 4 additions and 2 deletions
|
|
@ -408,6 +408,8 @@ export const StudioEditPanel: React.FC<IStudioEditPanel> = ({
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{renderButtons("mb-3")}
|
||||||
|
|
||||||
<Form noValidate onSubmit={formik.handleSubmit} id="studio-edit">
|
<Form noValidate onSubmit={formik.handleSubmit} id="studio-edit">
|
||||||
{renderInputField("name")}
|
{renderInputField("name")}
|
||||||
{renderStringListField("aliases")}
|
{renderStringListField("aliases")}
|
||||||
|
|
@ -432,9 +434,9 @@ export const StudioEditPanel: React.FC<IStudioEditPanel> = ({
|
||||||
)}
|
)}
|
||||||
<hr />
|
<hr />
|
||||||
{renderInputField("ignore_auto_tag", "checkbox")}
|
{renderInputField("ignore_auto_tag", "checkbox")}
|
||||||
</Form>
|
|
||||||
|
|
||||||
{renderButtons("mt-3")}
|
{renderButtons("mt-3")}
|
||||||
|
</Form>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue