@@ -33,7 +33,7 @@
|
|||||||
<ActionButton icon="icon-add" :title="t('deck', 'Add new stack')" @click.stop="showAddStack" />
|
<ActionButton icon="icon-add" :title="t('deck', 'Add new stack')" @click.stop="showAddStack" />
|
||||||
</Actions>
|
</Actions>
|
||||||
<form v-else @submit.prevent="addNewStack()">
|
<form v-else @submit.prevent="addNewStack()">
|
||||||
<label for="new-stack-input-main" class="hidden-visually">Add a new stack</label>
|
<label for="new-stack-input-main" class="hidden-visually">{{ t('deck', 'Add a new stack') }}</label>
|
||||||
<input id="new-stack-input-main"
|
<input id="new-stack-input-main"
|
||||||
v-model="newStackTitle"
|
v-model="newStackTitle"
|
||||||
type="text"
|
type="text"
|
||||||
|
|||||||
@@ -52,7 +52,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form v-if="showAddCard" class="stack--card-add" @submit.prevent="clickAddCard()">
|
<form v-if="showAddCard" class="stack--card-add" @submit.prevent="clickAddCard()">
|
||||||
<label for="new-stack-input-main" class="hidden-visually">Add a new card</label>
|
<label for="new-stack-input-main" class="hidden-visually">{{ t('deck', 'Add a new card') }}</label>
|
||||||
<input id="new-stack-input-main"
|
<input id="new-stack-input-main"
|
||||||
v-model="newCardTitle"
|
v-model="newCardTitle"
|
||||||
v-focus
|
v-focus
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
:key="entry.activity_id"
|
:key="entry.activity_id"
|
||||||
:activity="entry" />
|
:activity="entry" />
|
||||||
<button v-if="activityLoadMore" @click="loadMore">
|
<button v-if="activityLoadMore" @click="loadMore">
|
||||||
Load More
|
{{ t('deck', 'Load More') }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
:activity="entry" />
|
:activity="entry" />
|
||||||
</div>
|
</div>
|
||||||
<button v-if="activityLoadMore" @click="loadMore">
|
<button v-if="activityLoadMore" @click="loadMore">
|
||||||
Load More
|
{{ t('deck', 'Load More') }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<div v-else class="suggestion-list__item is-empty">
|
<div v-else class="suggestion-list__item is-empty">
|
||||||
No users found
|
{{ t('deck', 'No users found') }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -42,13 +42,13 @@
|
|||||||
:comment="comment"
|
:comment="comment"
|
||||||
@doReload="loadComments" />
|
@doReload="loadComments" />
|
||||||
<a @click="loadMore">
|
<a @click="loadMore">
|
||||||
Load More
|
{{ t('deck', 'Load More') }}
|
||||||
</a>
|
</a>
|
||||||
</ul>
|
</ul>
|
||||||
<div v-else-if="isLoading" class="icon icon-loading" />
|
<div v-else-if="isLoading" class="icon icon-loading" />
|
||||||
<div v-else class="emptycontent">
|
<div v-else class="emptycontent">
|
||||||
<div class="icon-comment" />
|
<div class="icon-comment" />
|
||||||
<p>Keine Kommentare bisher. Beginne die Diskussion!</p>
|
<p>{{ t('deck', 'No comments yet. Begin the discussion!') }}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user