improved tag handling
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
import MarkdownEditor from '../../Components/MarkdownEditor.svelte';
|
||||
import MemberEditor from '../../Components/MemberEditor.svelte';
|
||||
import StateSelector from '../../Components/StateSelector.svelte';
|
||||
import Tags from '../tags/TagList.svelte';
|
||||
import TaskList from '../task/TaskList.svelte';
|
||||
|
||||
let router = useTinyRouter();
|
||||
@@ -190,6 +191,12 @@
|
||||
<td class="estimated_time">{estimated_time.sum} h</td>
|
||||
</tr>
|
||||
{/if}
|
||||
<tr>
|
||||
<th>{t('tags')}</th>
|
||||
<td>
|
||||
<Tags module="project" {id} user_list={null} />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>
|
||||
{t('tasks')}
|
||||
@@ -203,4 +210,4 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
tag = await resp.text();
|
||||
tags.push(tag);
|
||||
tags = tags.sort();
|
||||
error = null;
|
||||
} else {
|
||||
error = await resp.text();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user