diff --git a/src/components/labels/ListLabels.vue b/src/components/labels/ListLabels.vue index 2bb1cddb..df8bc1f5 100644 --- a/src/components/labels/ListLabels.vue +++ b/src/components/labels/ListLabels.vue @@ -3,25 +3,26 @@

Manage labels

Click on a label to edit it. - You can edit all labels you created, you can use all labels which are associated with a task to whose list you have access. + You can edit all labels you created, you can use all labels which are associated with a task to whose list + you have access.

+ v-if="user.infos.id !== l.createdBy.id" + v-tooltip.bottom="'You are not allowed to edit this label because you dont own it.'"> {{ l.title }} + @click="editLabel(l)" + :style="{'color': l.textColor}" + v-else> {{ l.title }} @@ -44,13 +45,20 @@
- +
- +
@@ -68,12 +76,15 @@