1
0

fix(kanban): use correct text color for deletion button

This commit is contained in:
kolaente
2024-07-17 10:09:36 +02:00
parent ecdb03aca8
commit fe8e0ef78b

View File

@ -130,7 +130,7 @@
</DropdownItem>
<DropdownItem
v-tooltip="buckets.length <= 1 ? $t('project.kanban.deleteLast') : ''"
:class="{'is-disabled': buckets.length <= 1}"
:class="{'is-disabled': buckets.length <= 1, 'has-text-danger': true}"
icon-class="has-text-danger"
icon="trash-alt"
@click.stop="() => deleteBucketModal(bucket.id)"