working on project creation
This commit is contained in:
13
frontend/src/routes/project/Settings.svelte
Normal file
13
frontend/src/routes/project/Settings.svelte
Normal file
@@ -0,0 +1,13 @@
|
||||
<script>
|
||||
import {t} from '../../translations.svelte.js';
|
||||
|
||||
let { settings = $bindable() } = $props();
|
||||
|
||||
</script>
|
||||
<fieldset>
|
||||
<legend>{t('settings')}</legend>
|
||||
<label>
|
||||
<input type="checkbox" bind:checked={settings.show_closed} />
|
||||
{t('display_closed_tasks')}
|
||||
</label>
|
||||
</fieldset>
|
||||
Reference in New Issue
Block a user