Skip to content

Commit 1b1209d

Browse files
authored
fix: showing of UncategorizedNotification (#571)
1 parent d3a22c2 commit 1b1209d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/UncategorizedNotification.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default {
3030
isVisible() {
3131
// TODO: make configurable?
3232
// if total duration is less than 1 hour, don't show it
33-
const overTotal = this.total > 60 * 60 * 1000;
33+
const overTotal = this.total > 60 * 60;
3434
// if ratio is > 0.3, show it
3535
const overRatio = this.ratio > 0.3;
3636
// if there's a category filter (url has category query param), don't show it

0 commit comments

Comments
 (0)