This commit is contained in:
2019-11-11 20:11:22 +00:00
parent 9d6619c2e0
commit 7d9fe0d3b8
2 changed files with 9 additions and 4 deletions

View File

@@ -53,6 +53,11 @@ http://localhost:8080/login
CURRENT WORK:
- NOtify, why do I even need a close button? They are timed out automatically and I could use the space for a more info button (below)
- Add manual link option to alerts so that a user can click to go to more info (A more info link I guess)
- LT key "More" is just "More..." which could work if it looks like an URL
- Get edit form existing features completely working (also need new reportchooser not based on the original dialog component)

View File

@@ -1,11 +1,11 @@
<template>
<v-snackbar :value="isVisible" :color="currentNotification.type">
<v-alert :type="currentNotification.type">
<v-snackbar dismissable :value="isVisible" :color="currentNotification.type">
<v-alert :type="currentNotification.type" transition="scale-transition">
{{ currentNotification.message }}
</v-alert>
<v-btn icon @click="isVisible = false">
<!-- <v-btn icon @click="isVisible = false">
<v-icon color="white">fa-times-circle</v-icon>
</v-btn>
</v-btn> -->
</v-snackbar>
</template>