This commit is contained in:
@@ -737,7 +737,9 @@ BUILD 130 CHANGES OF NOTE
|
||||
- case 3955 back to you for recommendations
|
||||
- case 3956 implemented
|
||||
- case 3958 fixed
|
||||
|
||||
- case 3959 updated with info to you and also implemented a slight change as mentioned in case
|
||||
- Alert notes (was popup notes in v7) changed display color from red to orange as AyaNova errors display in red in similar location don't want them confused
|
||||
- case 3960 fixed
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||
<div v-if="formState.ready">
|
||||
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
|
||||
<gz-alert :alert-message="obj.alertViz" red-alert></gz-alert>
|
||||
<gz-alert :alert-message="obj.alertViz" pop-alert></gz-alert>
|
||||
<gz-alert :alert-message="obj.customerTechNotesViz"></gz-alert>
|
||||
<!-- SERVERERROR:{{ formState.serverError }} -->
|
||||
<v-form ref="form">
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||
<div v-if="formState.ready">
|
||||
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
|
||||
<gz-alert :alert-message="obj.alertViz" red-alert></gz-alert>
|
||||
<gz-alert :alert-message="obj.alertViz" pop-alert></gz-alert>
|
||||
<gz-alert :alert-message="obj.customerTechNotesViz"></gz-alert>
|
||||
<!-- SERVERERROR:{{ formState.serverError }} -->
|
||||
<v-form ref="form">
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||
<div v-if="formState.ready">
|
||||
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
|
||||
<gz-alert :alert-message="obj.alertViz" red-alert></gz-alert>
|
||||
<gz-alert :alert-message="obj.alertViz" pop-alert></gz-alert>
|
||||
<gz-alert :alert-message="obj.customerTechNotesViz"></gz-alert>
|
||||
<!-- SERVERERROR:{{ formState.serverError }} -->
|
||||
<v-form ref="form">
|
||||
|
||||
Reference in New Issue
Block a user