@gloww/gloww 20.0.0-beta.29 → 20.0.0-beta.30
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/fesm2022/gloww-gloww.mjs
CHANGED
|
@@ -1257,6 +1257,9 @@ class DisplayObjectsComponent {
|
|
|
1257
1257
|
this.queryParams[name] = this.queryParams[name];
|
|
1258
1258
|
});
|
|
1259
1259
|
}
|
|
1260
|
+
Object.keys(this.queryParams).forEach(name => {
|
|
1261
|
+
this.queryParams[name] = this.serializeQueryParamValue(this.queryParams[name]);
|
|
1262
|
+
});
|
|
1260
1263
|
this.queryParams['__guid'] = (Math.random().toString()).substring(2);
|
|
1261
1264
|
console.log("Before searchRequest");
|
|
1262
1265
|
//debugger;
|
|
@@ -1307,10 +1310,10 @@ class DisplayObjectsComponent {
|
|
|
1307
1310
|
return value;
|
|
1308
1311
|
}
|
|
1309
1312
|
if (value instanceof Date) {
|
|
1310
|
-
return Number.isNaN(value.getTime()) ? null : moment(value).format('YYYY-MM-
|
|
1313
|
+
return Number.isNaN(value.getTime()) ? null : moment(value).format('YYYY-MM-DD HH:mm:ss');
|
|
1311
1314
|
}
|
|
1312
1315
|
if (moment.isMoment(value)) {
|
|
1313
|
-
return value.isValid() ? value.format('YYYY-MM-
|
|
1316
|
+
return value.isValid() ? value.format('YYYY-MM-DD HH:mm:ss') : null;
|
|
1314
1317
|
}
|
|
1315
1318
|
return value;
|
|
1316
1319
|
}
|