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

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkorelstar <korelstar@users.noreply.github.com>2018-11-05 20:44:35 +0300
committerkorelstar <korelstar@users.noreply.github.com>2018-11-08 23:50:51 +0300
commita7bf43343ef82c1804ae9196f7100b1a1d9a7eb7 (patch)
tree2a9645074d30f97d5cc93b4aea15be8527b28e5e /templates/main.php
parent9898a41e7c0c925bd39361127ad01675bf9684da (diff)
fix: list of categories was not updated
Diffstat (limited to 'templates/main.php')
-rw-r--r--templates/main.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/main.php b/templates/main.php
index 6ab17e7a..b54ae858 100644
--- a/templates/main.php
+++ b/templates/main.php
@@ -70,7 +70,7 @@ style('notes', [
<!-- category list -->
<li
- ng-repeat="category in (getCategories(notes) | orderBy:['name'])"
+ ng-repeat="category in (categories | orderBy:['name'])"
class="nav-files"
ng-class="{ active: filterCategory==category.name && filterFavorite==false }"
title="{{ category.name || '<?php p($l->t('Uncategorized')); ?>' }}"