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
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B

View File

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