Skip to content

Commit

Permalink
feat(web): disable opening image and library sub-items by default (im…
Browse files Browse the repository at this point in the history
…mich-app#13729)

Disable opening image and library sub-items by default

Disable both the Image Settings and the External Library sub-items by default. This aligns with auth other settings sub-items showing as collapsed by default.
  • Loading branch information
ITestInProd authored and TimVanOnckelen committed Nov 5, 2024
1 parent e99b193 commit 9542a9b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
export let disabled = false;
export let onReset: SettingsResetEvent;
export let onSave: SettingsSaveEvent;
export let openByDefault = false;
</script>

<div>
Expand All @@ -29,7 +30,7 @@
key="thumbnail-settings"
title={$t('admin.image_thumbnail_title')}
subtitle={$t('admin.image_thumbnail_description')}
isOpen={true}
isOpen={openByDefault}
>
<SettingSelect
label={$t('admin.image_format')}
Expand Down Expand Up @@ -75,7 +76,7 @@
key="preview-settings"
title={$t('admin.image_preview_title')}
subtitle={$t('admin.image_preview_description')}
isOpen={true}
isOpen={openByDefault}
>
<SettingSelect
label={$t('admin.image_format')}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
export let disabled = false;
export let onReset: SettingsResetEvent;
export let onSave: SettingsSaveEvent;
export let openByDefault = false;
$: cronExpressionOptions = [
{ title: $t('interval.night_at_midnight'), expression: '0 0 * * *' },
Expand All @@ -35,7 +36,7 @@
key="library-watching"
title={$t('admin.library_watching_settings')}
subtitle={$t('admin.library_watching_settings_description')}
isOpen
isOpen={openByDefault}
>
<div class="ml-4 mt-4 flex flex-col gap-4">
<SettingSwitch
Expand All @@ -50,7 +51,7 @@
key="library-scanning"
title={$t('admin.library_scanning')}
subtitle={$t('admin.library_scanning_description')}
isOpen
isOpen={openByDefault}
>
<div class="ml-4 mt-4 flex flex-col gap-4">
<SettingSwitch
Expand Down

0 comments on commit 9542a9b

Please sign in to comment.