Success and warning alerts in webapp

This commit is contained in:
Joe Knapper 2024-01-10 18:29:43 +00:00
parent 6d622c1bf8
commit ddfce7dcff
2 changed files with 8 additions and 3 deletions

View file

@ -66,10 +66,10 @@
The task failed due to an error. There may be more information in
the log.
</div>
<div v-if="taskStatus == 'cancelled'" class="uk-alert-primary">
<div v-if="taskStatus == 'cancelled'" class="uk-alert-warning">
The task was cancelled.
</div>
<div v-if="taskStatus == 'completed'" class="uk-alert-primary">
<div v-if="taskStatus == 'completed'" class="uk-alert-success">
The task completed successfully.
</div>
</div>
@ -364,7 +364,7 @@ export default {
#log-container {
position: relative;
height: 6em;
overflow-y: scroll;
overflow-y: auto;
overflow-x: auto;
}