timer bar doesn't show up on login page

This commit is contained in:
Gourav Kumar 2024-06-16 12:24:20 +05:30
parent 3f1ddacce3
commit ee31d128d5

View File

@ -16,7 +16,17 @@ import ListSecrets from "./components/ListSecrets.vue";
<el-button type="error" @click="refresh">Refresh</el-button>
</div>
</div>
<div class="timer" :style="{ width: timerWidth + '%' }"></div>
<!-- prettier-ignore-start -->
<div
class="timer"
v-if="loggedin"
style="
{
width: timerWidth + '%';
}
"
></div>
<!-- prettier-ignore-end -->
<el-dialog v-model="creationDialog" title="Add a new TOTP secret" width="80vw">
<CreateSecret @close="creationDialog = false" />