@@ -39,18 +39,19 @@
|
||||
<div id="stack-add">
|
||||
<form>
|
||||
<label for="new-stack-input-main" class="hidden-visually">Add a new stack</label>
|
||||
<input type="text" class="no-close" id="new-stack-input-main" placeholder="Add a new stack">
|
||||
<input id="new-stack-input-main" type="text" class="no-close"
|
||||
placeholder="Add a new stack">
|
||||
<button class="button-inline icon icon-add" type="submit" title="Submit">
|
||||
<span class="hidden-visually">Submit</span>
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
<button title="Show archived cards">
|
||||
<i class="icon icon-archive"></i>
|
||||
<i class="icon icon-archive" />
|
||||
<span class="hidden-visually">Show archived cards</span>
|
||||
</button>
|
||||
<button title="Toggle compact mode">
|
||||
<i class="icon icon-toggle-compact-expanded"></i>
|
||||
<i class="icon icon-toggle-compact-expanded" />
|
||||
<span class="hidden-visually">Toggle compact mode</span>
|
||||
</button>
|
||||
<router-link v-tooltip="t('deck', 'Board settings')" :to="{name: 'board.details'}" class="icon-settings"
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<span class="icon-close" title="Close" @click="closeSidebar">
|
||||
<span class="hidden-visually">Close</span>
|
||||
</span>
|
||||
<router-view name="sidebar"></router-view>
|
||||
<router-view name="sidebar" />
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
</container>
|
||||
<div class="card create">
|
||||
<div title="Add card">
|
||||
<i class="icon icon-add"></i>
|
||||
<i class="icon icon-add" />
|
||||
<span class="hidden-visually">Add card</span>
|
||||
</div>
|
||||
</div>
|
||||
@@ -53,7 +53,7 @@
|
||||
<script>
|
||||
|
||||
import { Container, Draggable } from 'vue-smooth-dnd'
|
||||
import { mapState, mapGetters } from 'vuex'
|
||||
import { mapState } from 'vuex'
|
||||
import Controls from '../Controls'
|
||||
import CardItem from '../cards/CardItem'
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<i v-if="true" class="icon icon-description" title="" />
|
||||
<span v-if="true" class="due">
|
||||
<i class="icon icon-badge" />
|
||||
<span data-timestamp="" class="live-relative-timestamp"></span>
|
||||
<span data-timestamp="" class="live-relative-timestamp" />
|
||||
</span>
|
||||
<div v-if="true" class="card-tasks">
|
||||
<i class="icon icon-checkmark" />
|
||||
@@ -53,7 +53,10 @@ export default {
|
||||
name: 'CardBadges',
|
||||
components: { Avatar },
|
||||
props: {
|
||||
id: {}
|
||||
id: {
|
||||
type: Number,
|
||||
default: null
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
compactMode() {
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div @click="openCard" tag="div" class="card">
|
||||
<div tag="div" class="card" @click="openCard">
|
||||
<div class="card-upper">
|
||||
<h3>{{ card.title }}</h3>
|
||||
<ul class="labels">
|
||||
@@ -41,7 +41,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { Avatar, PopoverMenu } from 'nextcloud-vue'
|
||||
import { PopoverMenu } from 'nextcloud-vue'
|
||||
import ClickOutside from 'vue-click-outside'
|
||||
|
||||
import CardBadges from './CardBadges'
|
||||
@@ -55,7 +55,10 @@ export default {
|
||||
},
|
||||
mixins: [Color],
|
||||
props: {
|
||||
id: {}
|
||||
id: {
|
||||
type: Number,
|
||||
default: null
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -102,6 +102,8 @@ export default {
|
||||
}
|
||||
},
|
||||
actions: function() {
|
||||
/* eslint-disable vue/no-side-effects-in-computed-properties */
|
||||
/* eslint-disable vue/no-async-in-computed-properties */
|
||||
const actions = []
|
||||
|
||||
// do not show actions while the item is loading
|
||||
|
||||
Reference in New Issue
Block a user