Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-03-07 20:37:53 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-03-07 20:37:53 +0300
commitfdcbc3a8c195e7eb5617165a03b9dbf83a624fa8 (patch)
treecc0f34d79ea383bb67ae18a14badf960f6d5598b /src/components
parent2e7c2730f8cbc1cc8d375f1034e3190a8a6526c3 (diff)
Show non-PUBLIC tasks in shared calendars readonly
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/TaskBody.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/TaskBody.vue b/src/components/TaskBody.vue
index 809f5ef6..0590d561 100644
--- a/src/components/TaskBody.vue
+++ b/src/components/TaskBody.vue
@@ -23,7 +23,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
<template>
<li v-show="showTask"
:task-id="task.uri"
- :class="{done: task.completed, readOnly: task.calendar.readOnly, deleted: !!deleteTimeout}"
+ :class="{done: task.completed, readOnly: readOnly, deleted: !!deleteTimeout}"
:data-priority="[task.priority]"
class="task-item"
@dragstart="dragStart($event)">
@@ -38,10 +38,10 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
type="checkbox"
class="checkbox no-nav"
name="toggleCompleted"
- :class="{'disabled': task.calendar.readOnly}"
+ :class="{'disabled': readOnly}"
:checked="task.completed"
:aria-checked="task.completed"
- :disabled="task.calendar.readOnly"
+ :disabled="readOnly"
:aria-label="$t('tasks', 'Task is completed')"
@click="toggleCompleted(task)">
<label class="reactive no-nav" :for="'toggleCompleted_' + task.uid" />
@@ -120,7 +120,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
</ActionButton>
</Actions>
<button class="inline task-star reactive no-nav" @click="toggleStarred(task)">
- <span :class="[iconStar, {'disabled': task.calendar.readOnly}]" class="icon" />
+ <span :class="[iconStar, {'disabled': readOnly}]" class="icon" />
</button>
</div>
</div>