1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:35:56 +00:00

add ttrss_filters2.last_triggered (bump schema version)

This commit is contained in:
Andrew Dolgov
2018-12-06 19:37:20 +03:00
parent a01c33d654
commit 3e4326e34d
8 changed files with 33 additions and 4 deletions

View File

@@ -39,6 +39,7 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree"], functio
const feed = this.model.store.getValue(item, 'feed');
const inverse = this.model.store.getValue(item, 'inverse');
const last_triggered = this.model.store.getValue(item, 'last_triggered');
if (feed)
label += " (" + __("in") + " " + feed + ")";
@@ -46,6 +47,9 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree"], functio
if (inverse)
label += " (" + __("Inverse") + ")";
if (last_triggered)
label += " — " + last_triggered;
return label;
},
getIconClass: function (item, opened) {