aloha-vue 1.0.290 → 1.0.291
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.
package/package.json
CHANGED
|
@@ -6,6 +6,8 @@ import {
|
|
|
6
6
|
withDirectives,
|
|
7
7
|
} from "vue";
|
|
8
8
|
|
|
9
|
+
import ATranslation from "../../ATranslation/ATranslation";
|
|
10
|
+
|
|
9
11
|
import ASafeHtml from "../../directives/ASafeHtml";
|
|
10
12
|
|
|
11
13
|
import AKeysCode from "../../const/AKeysCode";
|
|
@@ -184,7 +186,12 @@ export default {
|
|
|
184
186
|
class: "a_errors__errors",
|
|
185
187
|
},
|
|
186
188
|
this.isErrorString ?
|
|
187
|
-
[
|
|
189
|
+
[
|
|
190
|
+
h(ATranslation, {
|
|
191
|
+
tag: "span",
|
|
192
|
+
html: this.error,
|
|
193
|
+
})
|
|
194
|
+
] :
|
|
188
195
|
this.isErrorArray ? [...this.error.map((error, erIndex) => {
|
|
189
196
|
return h(resolveComponent("AErrorsElement"), {
|
|
190
197
|
key: erIndex,
|