Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/views/MyWork.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<ParafeerInbox v-if="!loading" />

<!-- Grouped sections -->
<template v-else-if="!loading">
<template v-if="!loading">
<!-- Overdue -->
<div v-if="filteredGroups.overdue.length > 0" class="my-work__section my-work__section--overdue">
<h3 class="my-work__section-header my-work__section-header--overdue">
Expand Down Expand Up @@ -329,7 +329,7 @@
async fetchData() {
this.loading = true
try {
const currentUser = OC?.currentUser || ''

Check warning on line 332 in src/views/MyWork.vue

View workflow job for this annotation

GitHub Actions / quality / Vue Quality (eslint)

The property or function OC.currentUser was deprecated in Nextcloud 19.0.0

// Fetch case types for name resolution.
const caseTypes = await this.objectStore.fetchCollection('caseType', { _limit: 100 })
Expand Down Expand Up @@ -367,7 +367,7 @@
}

try {
const currentUser = OC?.currentUser || ''

Check warning on line 370 in src/views/MyWork.vue

View workflow job for this annotation

GitHub Actions / quality / Vue Quality (eslint)

The property or function OC.currentUser was deprecated in Nextcloud 19.0.0

// Find final status IDs by fetching statusTypes with isFinal.
const statusTypes = await this.objectStore.fetchCollection('statusType', { _limit: 200 })
Expand Down
Loading