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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user