aloha-vue 1.0.360 → 1.0.362
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
|
@@ -420,11 +420,10 @@ function checkErrorStatus({ error, showError, client, resolve, reject }) {
|
|
|
420
420
|
if (isFunction(ERROR_CALLBACKS.value.all)) {
|
|
421
421
|
return ERROR_CALLBACKS.value.all({ error, showError, client, resolve, reject });
|
|
422
422
|
}
|
|
423
|
+
return true;
|
|
423
424
|
};
|
|
424
425
|
|
|
425
|
-
ERROR_CALLBACK();
|
|
426
|
-
// Let the promise handle the error
|
|
427
|
-
return true;
|
|
426
|
+
return ERROR_CALLBACK();
|
|
428
427
|
}
|
|
429
428
|
|
|
430
429
|
export function setUrlWithParams({ url, params }) {
|
|
@@ -7,9 +7,9 @@ import {
|
|
|
7
7
|
|
|
8
8
|
export default {
|
|
9
9
|
beforeMount(el, binding) {
|
|
10
|
-
el.innerHTML =
|
|
10
|
+
el.innerHTML = isNil(binding.value) || binding.value === "" ? "" : sanitizeLocal(binding.value);
|
|
11
11
|
},
|
|
12
12
|
updated(el, binding) {
|
|
13
|
-
el.innerHTML =
|
|
13
|
+
el.innerHTML = isNil(binding.value) || binding.value === "" ? "" : sanitizeLocal(binding.value);
|
|
14
14
|
},
|
|
15
15
|
};
|