This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user