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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aloha-vue",
3
3
  "description": "Project aloha",
4
- "version": "1.0.290",
4
+ "version": "1.0.291",
5
5
  "author": "Ilia Brykin",
6
6
  "scripts": {
7
7
  "build-icons": "node scriptsNode/iconsSvgToJs.js bootstrap3 && node scriptsNode/iconsSvgToJs.js bootstrap-1-9-1"
@@ -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
- [h("span", null, this.error)] :
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,