@@ -57,9 +57,9 @@ export default {
|
|||||||
addButton: {
|
addButton: {
|
||||||
icon: 'icon-add',
|
icon: 'icon-add',
|
||||||
classes: [],
|
classes: [],
|
||||||
text: t('deck', 'Create new board'),
|
text: t('deck', 'add board'),
|
||||||
edit: {
|
edit: {
|
||||||
text: t('deck', 'new board'),
|
text: t('deck', 'add board'),
|
||||||
action: () => {
|
action: () => {
|
||||||
},
|
},
|
||||||
reset: () => {
|
reset: () => {
|
||||||
|
|||||||
@@ -39,11 +39,11 @@
|
|||||||
v-click-outside="hideAddStack">
|
v-click-outside="hideAddStack">
|
||||||
<Actions v-if="!isAddStackVisible">
|
<Actions v-if="!isAddStackVisible">
|
||||||
<ActionButton icon="icon-add" @click.stop="showAddStack">
|
<ActionButton icon="icon-add" @click.stop="showAddStack">
|
||||||
{{ t('deck', 'Add new list') }}
|
{{ t('deck', 'Add list') }}
|
||||||
</ActionButton>
|
</ActionButton>
|
||||||
</Actions>
|
</Actions>
|
||||||
<form v-else @submit.prevent="addNewStack()">
|
<form v-else @submit.prevent="addNewStack()">
|
||||||
<label for="new-stack-input-main" class="hidden-visually">{{ t('deck', 'Add new list') }}</label>
|
<label for="new-stack-input-main" class="hidden-visually">{{ t('deck', 'Add list') }}</label>
|
||||||
<input id="new-stack-input-main"
|
<input id="new-stack-input-main"
|
||||||
v-model="newStackTitle"
|
v-model="newStackTitle"
|
||||||
v-focus
|
v-focus
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
class="no-close"
|
class="no-close"
|
||||||
:placeholder="t('deck', 'List name')"
|
:placeholder="t('deck', 'List name')"
|
||||||
required>
|
required>
|
||||||
<input v-tooltip="t('deck', 'Add new list')"
|
<input v-tooltip="t('deck', 'Add list')"
|
||||||
class="icon-confirm"
|
class="icon-confirm"
|
||||||
type="submit"
|
type="submit"
|
||||||
value="">
|
value="">
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
class="no-close"
|
class="no-close"
|
||||||
:placeholder="t('deck', 'List name')"
|
:placeholder="t('deck', 'List name')"
|
||||||
required>
|
required>
|
||||||
<input v-tooltip="t('deck', 'Add new list')"
|
<input v-tooltip="t('deck', 'Add list')"
|
||||||
class="icon-confirm"
|
class="icon-confirm"
|
||||||
type="submit"
|
type="submit"
|
||||||
value="">
|
value="">
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<AppNavigationItem v-if="!editing"
|
<AppNavigationItem v-if="!editing"
|
||||||
:title="t('deck', 'Create new board')"
|
:title="t('deck', 'Add board')"
|
||||||
icon="icon-add"
|
icon="icon-add"
|
||||||
@click.prevent.stop="startCreateBoard" />
|
@click.prevent.stop="startCreateBoard" />
|
||||||
<div v-else class="board-create">
|
<div v-else class="board-create">
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
<div :style="{ backgroundColor: color }" class="color0 icon-colorpicker app-navigation-entry-bullet" />
|
<div :style="{ backgroundColor: color }" class="color0 icon-colorpicker app-navigation-entry-bullet" />
|
||||||
</ColorPicker>
|
</ColorPicker>
|
||||||
<form @submit.prevent.stop="createBoard">
|
<form @submit.prevent.stop="createBoard">
|
||||||
<input :placeholder="t('deck', 'New board title')" type="text" required>
|
<input :placeholder="t('deck', 'Board name')" type="text" required>
|
||||||
<input type="submit" value="" class="icon-confirm">
|
<input type="submit" value="" class="icon-confirm">
|
||||||
<Actions><ActionButton icon="icon-close" @click.stop.prevent="cancelEdit" /></Actions>
|
<Actions><ActionButton icon="icon-close" @click.stop.prevent="cancelEdit" /></Actions>
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
Reference in New Issue
Block a user