Skip to content

Commit 3351bc1

Browse files
Fix faction last action filter not appearing.
1 parent 3fece20 commit 3351bc1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

extension/changelog.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"fixes": [
99
{ "message": "Fix the company id showing something wrong.", "contributor": "DeKleineKobini" },
1010
{ "message": "Fix the faction id not working for your own faction.", "contributor": "DeKleineKobini" },
11-
{ "message": "Fix faction last action not working for other factions.", "contributor": "DeKleineKobini" }
11+
{ "message": "Fix faction last action not working for other factions.", "contributor": "DeKleineKobini" },
12+
{ "message": "Fix faction last action filter not appearing.", "contributor": "DeKleineKobini" }
1213
],
1314
"changes": [
1415
{ "message": "Change layout of preferences page on mobiles.", "contributor": "TheFoxMan" },

extension/scripts/features/faction-member-filter/ttFactionMemberFilter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
}
142142

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

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

0 commit comments

Comments
 (0)