mirror of
https://github.com/immich-app/immich.git
synced 2026-03-11 04:13:44 -04:00
19 lines
512 B
Svelte
19 lines
512 B
Svelte
<script lang="ts">
|
|
import { Field, FormModal, Textarea } from '@immich/ui';
|
|
import { mdiText } from '@mdi/js';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
type Props = {
|
|
onClose: (description?: string) => void;
|
|
};
|
|
|
|
let { onClose }: Props = $props();
|
|
let description = $state('');
|
|
</script>
|
|
|
|
<FormModal title={$t('edit_description')} icon={mdiText} {onClose} onSubmit={() => onClose(description)}>
|
|
<Field label={$t('description')}>
|
|
<Textarea bind:value={description} grow />
|
|
</Field>
|
|
</FormModal>
|