Browse Source

moved description a bit down

feature/global_error_display
Stephan Richter 1 month ago
parent
commit
44fa27d489
  1. 10
      frontend/src/routes/project/View.svelte

10
frontend/src/routes/project/View.svelte

@ -182,10 +182,6 @@ @@ -182,10 +182,6 @@
<button>{t('models')}</button>
<button>{t('times')}</button>
</div>
<div>{t('description')}</div>
<div class="description">
<MarkdownEditor bind:value={project.description} editable={true} onSet={val => update({description:val})} />
</div>
{#if showSettings}
<div>{t('extended_settings')}</div>
<label>
@ -221,6 +217,12 @@ @@ -221,6 +217,12 @@
<div>{t('estimated_time')}</div>
<div class="estimated_time">{estimated_time.sum} h</div>
{/if}
<div>{t('description')}</div>
<div class="description">
<MarkdownEditor bind:value={project.description} editable={true} onSet={val => update({description:val})} />
</div>
<div>{t('tags')}</div>
<div>
<Tags module="project" {id} user_list={null} />

Loading…
Cancel
Save