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-05-09 21:33:08 +0300
committerGitHub <noreply@github.com>2020-05-09 21:33:08 +0300
commit0b75a29dcf83b56d48189d99e9aa189b1306e6d4 (patch)
treeb652ef13f78f18b4cd9e1c84c34ca63edea883bb /src/components/TheCollections/Calendar.vue
parent84b5b288922c1e252375e4ce87a981f7831805c0 (diff)
parent15f6639c839fb8706400afdcd799b782ff1da27a (diff)
Merge pull request #1013 from nextcloud/fix/1012/calendar-color
Show calendar color in task list
Diffstat (limited to 'src/components/TheCollections/Calendar.vue')
-rw-r--r--src/components/TheCollections/Calendar.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/TheCollections/Calendar.vue b/src/components/TheCollections/Calendar.vue
index bb037374..e6165ecc 100644
--- a/src/components/TheCollections/Calendar.vue
+++ b/src/components/TheCollections/Calendar.vue
@@ -49,8 +49,8 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
:key="task.key"
:task="task" />
</TaskDragContainer>
- <h2 v-show="completedCount(calendarId)" class="heading-hiddentasks icon-triangle-s reactive" @click="toggleHidden">
- {{ completedCountString }}
+ <h2 v-show="completedCount(calendarId)" class="heading heading--hiddentasks reactive" @click="toggleHidden">
+ <span class="heading__title icon-triangle-s">{{ completedCountString }}</span>
</h2>
<TaskDragContainer v-if="showHidden"
:calendar-id="calendarId"