Skip to content

Commit 17ef2da

Browse files
Fix linter errors
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
1 parent e29cf9a commit 17ef2da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/TheDetails.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
7979
</ul>
8080
</template> -->
8181

82-
<template v-slot:secondary-actions>
82+
<template #secondary-actions>
8383
<ActionButton v-if="!readOnly"
8484
:icon="task.pinned ? 'icon-pinned-off' : 'icon-pinned'"
8585
@click="togglePinned(task)">
@@ -96,7 +96,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
9696
</ActionButton>
9797
</template>
9898

99-
<template v-slot:tertiary-actions>
99+
<template #tertiary-actions>
100100
<span class="detail-checkbox">
101101
<input :id="'detailsToggleCompleted_' + task.uid"
102102
type="checkbox"
@@ -464,7 +464,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
464464
<script>
465465
import { overdue } from '../store/storeHelper.js'
466466
import Markdown from './Markdown.vue'
467-
import TaskStatusDisplay from './TaskStatusDisplay.vue'
467+
// import TaskStatusDisplay from './TaskStatusDisplay.vue'
468468
import { linkify } from '../directives/linkify.js'
469469
470470
import moment from '@nextcloud/moment'
@@ -487,7 +487,7 @@ export default {
487487
DatetimePicker,
488488
Multiselect,
489489
Markdown,
490-
TaskStatusDisplay,
490+
// TaskStatusDisplay,
491491
},
492492
directives: {
493493
clickOutside: ClickOutside.directive,

0 commit comments

Comments
 (0)