fix(filters): don't allow marking a filter as favorite

This commit is contained in:
kolaente 2023-08-24 11:30:57 +02:00
parent c01957aae2
commit 6cbbe17bd8
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@
}"
/>
<BaseButton
v-if="!project.isArchived"
v-if="!project.isArchived && project.id > -1"
class="favorite"
:class="{'is-favorite': project.isFavorite}"
@click.prevent.stop="projectStore.toggleProjectFavorite(project)"