bfg-common 1.3.540 → 1.3.542
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
]"
|
|
34
34
|
>
|
|
35
35
|
<div :id="tableWrapperId" class="datagrid-table-wrapper">
|
|
36
|
-
<div class="datagrid-table">
|
|
36
|
+
<div class="datagrid-table" :data-id="props.testId">
|
|
37
37
|
<div class="datagrid-header">
|
|
38
38
|
<div class="datagrid-row">
|
|
39
39
|
<div class="datagrid-row-master datagrid-row-flex">
|
package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/DeviceSelection.vue
CHANGED
|
@@ -179,7 +179,8 @@ const onHideAlertInfo = (): void => {
|
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
const errors = ref<string[]>([])
|
|
182
|
-
const errorAlertDataId = ref<string>('
|
|
182
|
+
const errorAlertDataId = ref<string>('')
|
|
183
|
+
const defaultDataId = ref<string>('device-selection-alert-error')
|
|
183
184
|
const formErrors = ref<UI_I_ValidationTouchResult[]>([])
|
|
184
185
|
|
|
185
186
|
/* Lun disk table */
|
|
@@ -253,7 +254,7 @@ const showValidationErrors = (
|
|
|
253
254
|
errorAlertDataId.value = validateNameAndGenerateDataId(
|
|
254
255
|
form.value.name.value,
|
|
255
256
|
errorText,
|
|
256
|
-
|
|
257
|
+
defaultDataId.value
|
|
257
258
|
)
|
|
258
259
|
}
|
|
259
260
|
formErrors.value = data
|