re-factor / cleanup

This commit is contained in:
2022-01-11 22:08:38 +00:00
parent e871708b20
commit e0be8a7cfe
251 changed files with 14680 additions and 15693 deletions

View File

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