Skip to content

Commit

Permalink
Fix faction last action filter not appearing.
Browse files Browse the repository at this point in the history
  • Loading branch information
DeKleineKobini committed Feb 24, 2025
1 parent 3fece20 commit 3351bc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion extension/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"fixes": [
{ "message": "Fix the company id showing something wrong.", "contributor": "DeKleineKobini" },
{ "message": "Fix the faction id not working for your own faction.", "contributor": "DeKleineKobini" },
{ "message": "Fix faction last action not working for other factions.", "contributor": "DeKleineKobini" }
{ "message": "Fix faction last action not working for other factions.", "contributor": "DeKleineKobini" },
{ "message": "Fix faction last action filter not appearing.", "contributor": "DeKleineKobini" }
],
"changes": [
{ "message": "Change layout of preferences page on mobiles.", "contributor": "TheFoxMan" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
}

async function showLastAction() {
if (!lastActionState || (localFilters["Last Active Filter"] && localFilters["Last Active Filter"].element)) return;
if (lastActionState || (localFilters["Last Active Filter"] && localFilters["Last Active Filter"].element)) return;

await requireElement(".members-list .table-body.tt-modified > .tt-last-action");

Expand Down

0 comments on commit 3351bc1

Please sign in to comment.