Fix empty call to actions
continuous-integration/drone/push Build is failing Details

This commit is contained in:
kolaente 2021-01-21 18:14:22 +01:00
parent bdfbe8857a
commit 0667a96376
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
4 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@
You can edit all labels you created, you can use all labels which are associated with a task to whose
list you have access.
</p>
<p v-else class="has-text-centered has-text-grey">
<p v-else class="has-text-centered has-text-grey is-italic">
You currently do not have any labels.
<router-link :to="{name:'labels.create'}">Create a new label.</router-link>
</p>

View File

@ -83,7 +83,7 @@
</p>
</div>
<p class="has-text-centered has-text-grey" v-if="ctaVisiable && tasks.length === 0 && !taskCollectionService.loading">
<p class="has-text-centered has-text-grey is-italic" v-if="ctaVisible && tasks.length === 0 && !taskCollectionService.loading">
This list is currently empty.
<a @click="$refs.newTaskInput.focus()">Create a new task.</a>
</p>

View File

@ -11,7 +11,7 @@
Show Archived
</fancycheckbox>
<p class="has-text-centered has-text-grey mt-4" v-if="namespaces.length === 0">
<p class="has-text-centered has-text-grey mt-4 is-italic" v-if="namespaces.length === 0">
You don't have any namespaces right now.
<router-link :to="{name: 'namespace.create'}">
Create a namespace.
@ -36,7 +36,7 @@
</span>
</h1>
<p class="has-text-centered has-text-grey mt-4" v-if="n.lists.length === 0">
<p class="has-text-centered has-text-grey mt-4 is-italic" v-if="n.lists.length === 0">
This namespace does not contain any lists.
<router-link :to="{name: 'list.create', params: {id: n.id}}">
Create a new list in this namespace.

View File

@ -16,7 +16,7 @@
</router-link>
</li>
</ul>
<p v-else-if="!teamService.loading" class="has-text-centered has-text-grey">
<p v-else-if="!teamService.loading" class="has-text-centered has-text-grey is-italic">
You are currently not part of any teams.
<router-link :to="{name: 'teams.create'}">
Create a new team.