diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-11-23 14:10:56 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-11-23 14:10:56 +0000 |
| commit | 81ccfed4b447bee43a330f26560325d11e908737 (patch) | |
| tree | da5ce6dafa6bd4e7de605c4b335e2e36d2f72573 /js | |
| parent | 9c1fb45d73b6719f7c7bc6e0423a7faef75a2796 (diff) | |
| parent | 4dc0e8cd29503a0a8a8979484c8b7a36f886b840 (diff) | |
Merge branch 'filter-fixes' into 'master'
get filter action descriptions on pref_filters class init instead of doing it...
See merge request tt-rss/tt-rss!78
Diffstat (limited to 'js')
| -rw-r--r-- | js/CommonFilters.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/CommonFilters.js b/js/CommonFilters.js index 8be9e2613..6a85bf86c 100644 --- a/js/CommonFilters.js +++ b/js/CommonFilters.js @@ -324,7 +324,9 @@ const Filters = { </form> `); - dijit.byId("filterDlg_actionSelect").attr('value', action.action_id); + const actionSelect = dijit.byId("filterDlg_actionSelect").attr('value', action.action_id); + + edit_action_dialog.toggleParam(actionSelect); /*xhr.post("backend.php", {op: 'Pref_Filters', method: 'newaction', action: actionStr}, (reply) => { edit_action_dialog.attr('content', reply); |