This commit is contained in:
2021-09-13 18:15:24 +00:00
parent 6e24b140a8
commit 335514d081
5 changed files with 9 additions and 7 deletions

View File

@@ -1,11 +1,11 @@
<template>
<v-col v-if="alertMessage" cols="12" mt-1 mb-2>
<template v-if="redAlert">
<template v-if="popAlert">
<v-alert
ref="alertBox"
data-cy="alertbox"
v-show="alertMessage"
color="error"
color="accent"
type="error"
icon="$ayiExclamationTriangle"
class="multi-line"
@@ -32,7 +32,7 @@ export default {
data: () => ({}),
props: {
alertMessage: { type: String, default: null },
redAlert: { type: Boolean, default: false }
popAlert: { type: Boolean, default: false }
}
};
</script>