Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
EwoutV committed May 1, 2024
1 parent f982588 commit ac42125
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/projects/ProjectInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ const { t } = useI18n();
<div class="flex align-items-center flex-wrap gap-3 surface-50 p-3">
<span class="flex align-items-center">
<template v-if="project.isLocked()">
<i class="pi pi-lock mr-2"/>
<i class="pi pi-lock mr-2" />
{{ t('views.projects.locked') }}
</template>
<template v-else>
<i class="pi pi-unlock mr-2"/>
<i class="pi pi-unlock mr-2" />
{{ t('views.projects.unlocked') }}
</template>
</span>
Expand Down

0 comments on commit ac42125

Please sign in to comment.