[O] Change that to -1

This commit is contained in:
Hykilpikonna
2019-12-21 19:24:23 -05:00
parent cc485708c5
commit 78590f96f1
+2 -2
View File
@@ -1,6 +1,6 @@
<template> <template>
<div id="overall"> <div id="overall">
<el-progress v-if="progress !== 0" :text-inside="true" :percentage="progress"/> <el-progress v-if="progress !== -1" :text-inside="true" :percentage="progress"/>
<el-dialog title="Notice" :visible.sync="clearUnreadPrompt" <el-dialog title="Notice" :visible.sync="clearUnreadPrompt"
width="30%" style="word-break: unset;"> width="30%" style="word-break: unset;">
@@ -79,7 +79,7 @@
unread: Assignment[]; unread: Assignment[];
clearUnreadPrompt = false; clearUnreadPrompt = false;
dontAskAgain = false; dontAskAgain = false;
progress = 0; progress = -1;
/** /**
* On page load - check if the user has too many notifications * On page load - check if the user has too many notifications