Fix empty call to actions
This commit is contained in:
parent
bdfbe8857a
commit
0667a96376
4 changed files with 5 additions and 5 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue