1
0

fix: use the color bubble as handle if the project has a color

This commit is contained in:
kolaente
2023-04-12 10:27:32 +02:00
parent a7440ed296
commit 48570808e5
2 changed files with 6 additions and 4 deletions

View File

@ -17,14 +17,14 @@
class="list-menu-link"
:class="{'router-link-exact-active': currentProject.id === project.id}"
>
<span class="icon menu-item-icon handle">
<icon icon="grip-lines"/>
</span>
<ColorBubble
v-if="project.hexColor !== ''"
:color="project.hexColor"
class="mr-1"
class="handle"
/>
<span class="icon menu-item-icon handle" v-else>
<icon icon="grip-lines"/>
</span>
<span class="list-menu-title">{{ getProjectTitle(project) }}</span>
</BaseButton>
<BaseButton