pl-fe: fix 'show filtered anyway'

Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
mkljczk
2024-12-25 11:28:41 +01:00
parent 09f326d633
commit 51d4797066

View File

@ -302,7 +302,7 @@ const Status: React.FC<IStatus> = (props) => {
<Tombstone id={status.id} onMoveUp={onMoveUp} onMoveDown={onMoveDown} deleted />
);
if (filtered && status.showFiltered !== true) {
if (filtered && actualStatus.showFiltered !== true) {
const minHandlers = muted ? undefined : {
moveUp: handleHotkeyMoveUp,
moveDown: handleHotkeyMoveDown,