This commit is contained in:
@@ -53,6 +53,11 @@ http://localhost:8080/login
|
|||||||
|
|
||||||
CURRENT WORK:
|
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)
|
- Get edit form existing features completely working (also need new reportchooser not based on the original dialog component)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-snackbar :value="isVisible" :color="currentNotification.type">
|
<v-snackbar dismissable :value="isVisible" :color="currentNotification.type">
|
||||||
<v-alert :type="currentNotification.type">
|
<v-alert :type="currentNotification.type" transition="scale-transition">
|
||||||
{{ currentNotification.message }}
|
{{ currentNotification.message }}
|
||||||
</v-alert>
|
</v-alert>
|
||||||
<v-btn icon @click="isVisible = false">
|
<!-- <v-btn icon @click="isVisible = false">
|
||||||
<v-icon color="white">fa-times-circle</v-icon>
|
<v-icon color="white">fa-times-circle</v-icon>
|
||||||
</v-btn>
|
</v-btn> -->
|
||||||
</v-snackbar>
|
</v-snackbar>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user