ts-glitter 14.9.2 → 14.9.3
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/lowcode/Entry.js
CHANGED
|
@@ -80,7 +80,7 @@ export class Entry {
|
|
|
80
80
|
}
|
|
81
81
|
window.renderClock = (_a = window.renderClock) !== null && _a !== void 0 ? _a : clockF();
|
|
82
82
|
console.log(`Entry-time:`, window.renderClock.stop());
|
|
83
|
-
glitter.share.editerVersion = 'V_14.9.
|
|
83
|
+
glitter.share.editerVersion = 'V_14.9.3';
|
|
84
84
|
glitter.share.start = new Date();
|
|
85
85
|
const vm = {
|
|
86
86
|
appConfig: [],
|
package/lowcode/Entry.ts
CHANGED
|
@@ -82,7 +82,7 @@ export class Entry {
|
|
|
82
82
|
|
|
83
83
|
(window as any).renderClock = (window as any).renderClock ?? clockF();
|
|
84
84
|
console.log(`Entry-time:`, (window as any).renderClock.stop());
|
|
85
|
-
glitter.share.editerVersion = 'V_14.9.
|
|
85
|
+
glitter.share.editerVersion = 'V_14.9.3';
|
|
86
86
|
glitter.share.start = new Date();
|
|
87
87
|
const vm: {
|
|
88
88
|
appConfig: any;
|
|
@@ -648,6 +648,11 @@ export class ApiUser {
|
|
|
648
648
|
case 'message_setting':
|
|
649
649
|
config[key + user_id] = res;
|
|
650
650
|
break;
|
|
651
|
+
case 'image-manager':
|
|
652
|
+
if (!Array.isArray(res.response.value)) {
|
|
653
|
+
res.response.value = [];
|
|
654
|
+
}
|
|
655
|
+
break;
|
|
651
656
|
}
|
|
652
657
|
if (key.indexOf('alt_') === 0) {
|
|
653
658
|
config[key + user_id] = res;
|
|
@@ -698,6 +698,11 @@ export class ApiUser {
|
|
|
698
698
|
case 'message_setting':
|
|
699
699
|
config[key + user_id] = res;
|
|
700
700
|
break;
|
|
701
|
+
case 'image-manager':
|
|
702
|
+
if(!Array.isArray(res.response.value)){
|
|
703
|
+
res.response.value=[]
|
|
704
|
+
}
|
|
705
|
+
break
|
|
701
706
|
}
|
|
702
707
|
if(key.indexOf('alt_')===0){
|
|
703
708
|
config[key + user_id] = res;
|