diff --git a/frontend/src/routes/task/View.svelte b/frontend/src/routes/task/View.svelte index 5eecc20..1d64f0b 100644 --- a/frontend/src/routes/task/View.svelte +++ b/frontend/src/routes/task/View.svelte @@ -214,11 +214,11 @@ update({description:val})} /> {/if} - {#if task.start_date} + {#if !showSettings && task.start_date}
{t('start_date')}
{task.start_date}
{/if} - {#if task.due_date} + {#if !showSettings && task.due_date}
{t('due_date')}
{task.due_date}
{/if} @@ -226,14 +226,6 @@
{t('estimated_time')}
{task.estimated_time} h
{/if} -
{t('members')}
-
- -
{#if showSettings}
{t('extended_settings')}