Skip to content

Commit

Permalink
Fix task detection
Browse files Browse the repository at this point in the history
  • Loading branch information
otacke committed Sep 5, 2024
1 parent 1a21216 commit 8dc8125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/services/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default class Util {
return false;
}

if (instance.isTask) {
if (typeof instance.isTask === 'boolean') {
return instance.isTask; // Content will determine if it's task on its own
}

Expand Down

0 comments on commit 8dc8125

Please sign in to comment.