Skip to content

Commit

Permalink
Merge pull request #36 from Eisvana/dev
Browse files Browse the repository at this point in the history
Only show systems when correctly prefixed is set | closes #28
  • Loading branch information
Lenni009 authored Aug 31, 2024
2 parents 9b95538 + 62dbc6b commit af9d771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/worker/dataLoaderWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function applyFilter(
if (!isValidPlatform) return false;

const isValidTagged =
tagged === '' || (tagged && item['Correctly Prefixed']) || (!tagged && !item['Correctly Prefixed']);
tagged === '' || (tagged && item['Correctly Prefixed']) || (!tagged && item['Correctly Prefixed'] === false);

if (!isValidTagged) return false;

Expand Down

0 comments on commit af9d771

Please sign in to comment.