hide placeholders (#2384)

This commit is contained in:
Utku 2024-04-24 12:48:14 -04:00 committed by GitHub
parent 3bed56d4d9
commit 279aaf2c50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View file

@ -58,13 +58,13 @@ export default () => {
to="settings/library/general"
className="font-medium"
/>
<DropdownMenu.Item
{/* <DropdownMenu.Item
label={t('lock')}
icon={Lock}
iconProps={{ weight: 'bold', size: 16 }}
onClick={() => alert('TODO: Not implemented yet!')}
className="font-medium"
/>
/> */}
</DropdownMenu.Root>
);
};

View file

@ -71,22 +71,22 @@ export default ({ tag, onDelete }: Props) => {
</Tooltip>
</Button>
</div>
<div className="flex flex-col gap-2">
{/* <div className="flex flex-col gap-2">
<Setting
mini
title={t('hide_in_library_search')}
description={t('hide_in_library_search_description')}
>
<Switch />
<Switch disabled />
</Setting>
<Setting
mini
title={t('hide_in_sidebar')}
description={t('hide_in_sidebar_description')}
>
<Switch />
<Switch disabled />
</Setting>
</div>
</div> */}
</Form>
);
};