diff --git a/src/views/list/views/List.vue b/src/views/list/views/List.vue index aba20f2e7..639f73e65 100644 --- a/src/views/list/views/List.vue +++ b/src/views/list/views/List.vue @@ -83,7 +83,7 @@

-

+

This list is currently empty. Create a new task.

@@ -184,6 +184,8 @@ export default { showError: false, labelTaskService: LabelTaskService, labelService: LabelService, + + ctaVisible: false, } }, mixins: [ @@ -207,6 +209,9 @@ export default { canWrite: state => state.currentList.maxRight > Rights.READ, list: state => state.currentList, }), + mounted() { + this.$nextTick(() => this.ctaVisible = true) + }, methods: { // This function initializes the tasks page and loads the first page of tasks initTasks(page, search = '') { diff --git a/src/views/teams/ListTeams.vue b/src/views/teams/ListTeams.vue index 24736ab1a..657e377a4 100644 --- a/src/views/teams/ListTeams.vue +++ b/src/views/teams/ListTeams.vue @@ -16,7 +16,7 @@ -

+

You are currently not part of any teams. Create a new team.