1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 04:35:55 +00:00

* remove users/filters toolbar edit button (just click on it)

* fix title of edit filter dialog always showing create filter
This commit is contained in:
Andrew Dolgov
2021-02-14 15:38:45 +03:00
parent a8cc43a0ff
commit 0fbf109912
5 changed files with 1 additions and 39 deletions

View File

@@ -119,23 +119,6 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree"], functio
});
}
},
editSelectedFilter: function() {
const rows = this.getSelectedFilters();
if (rows.length == 0) {
alert(__("No filters selected."));
return;
}
if (rows.length > 1) {
alert(__("Please select only one filter."));
return;
}
Notify.close();
this.editFilter(rows[0]);
},
removeSelectedFilters: function() {
const sel_rows = this.getSelectedFilters();