mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Fix checkbox labels (#1947)
* fix create galleries from folders checkbox id * add missing checkbox ids
This commit is contained in:
@@ -569,7 +569,7 @@ export const SettingsConfigurationPanel: React.FC = () => {
|
|||||||
|
|
||||||
<Form.Group>
|
<Form.Group>
|
||||||
<Form.Check
|
<Form.Check
|
||||||
id="log-terminal"
|
id="create-galleries-from-folders"
|
||||||
checked={createGalleriesFromFolders}
|
checked={createGalleriesFromFolders}
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
id: "config.general.create_galleries_from_folders_label",
|
id: "config.general.create_galleries_from_folders_label",
|
||||||
@@ -592,6 +592,7 @@ export const SettingsConfigurationPanel: React.FC = () => {
|
|||||||
<h4>{intl.formatMessage({ id: "config.general.hashing" })}</h4>
|
<h4>{intl.formatMessage({ id: "config.general.hashing" })}</h4>
|
||||||
<Form.Group>
|
<Form.Group>
|
||||||
<Form.Check
|
<Form.Check
|
||||||
|
id="calculate-md5-and-ohash"
|
||||||
checked={calculateMD5}
|
checked={calculateMD5}
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
id: "config.general.calculate_md5_and_ohash_label",
|
id: "config.general.calculate_md5_and_ohash_label",
|
||||||
|
|||||||
@@ -465,6 +465,7 @@ export const SettingsDLNAPanel: React.FC = () => {
|
|||||||
</Form.Group>
|
</Form.Group>
|
||||||
<Form.Group>
|
<Form.Group>
|
||||||
<Form.Check
|
<Form.Check
|
||||||
|
id="dlna-enabled-by-default"
|
||||||
checked={values.enabled}
|
checked={values.enabled}
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
id: "config.dlna.enabled_by_default",
|
id: "config.dlna.enabled_by_default",
|
||||||
|
|||||||
@@ -274,8 +274,9 @@ export const SettingsInterfacePanel: React.FC = () => {
|
|||||||
|
|
||||||
<Form.Group>
|
<Form.Group>
|
||||||
<h5>{intl.formatMessage({ id: "config.ui.scene_player.heading" })}</h5>
|
<h5>{intl.formatMessage({ id: "config.ui.scene_player.heading" })}</h5>
|
||||||
<Form.Group id="auto-start-video">
|
<Form.Group>
|
||||||
<Form.Check
|
<Form.Check
|
||||||
|
id="auto-start-video"
|
||||||
checked={autostartVideo}
|
checked={autostartVideo}
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
id: "config.ui.scene_player.options.auto_start_video",
|
id: "config.ui.scene_player.options.auto_start_video",
|
||||||
|
|||||||
Reference in New Issue
Block a user