added click handler to update account page

This commit is contained in:
Miodec 2022-02-11 22:06:32 +01:00
parent 751c7992bc
commit 5d8ef4ac09

View file

@ -1000,6 +1000,14 @@ $(document).on("click", ".buttonsAndTitle .buttons .button", (event) => {
sortAndRefreshHistory("timestamp", ".history-date-header", true);
});
$(
".pageAccount .topFilters .button, .pageAccount .filterButtons .button "
).click((e) => {
setTimeout(() => {
update();
}, 0);
});
export const page = new Page(
"account",
$(".page.pageAccount"),