@xh/hoist 69.0.0-SNAPSHOT.1728501806283 → 69.0.0-SNAPSHOT.1728610416487
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/admin/columns/Core.ts
CHANGED
|
@@ -44,5 +44,5 @@ export const note: ColumnSpec = {
|
|
|
44
44
|
export const timestampNoYear: ColumnSpec = {
|
|
45
45
|
field: {name: 'timestamp', type: 'date'},
|
|
46
46
|
...dateTimeSec,
|
|
47
|
-
renderer: dateTimeRenderer({fmt: 'MMM DD HH:mm:ss'})
|
|
47
|
+
renderer: dateTimeRenderer({fmt: 'MMM DD HH:mm:ss.SSS'})
|
|
48
48
|
};
|
|
@@ -61,7 +61,7 @@ export class BaseInstanceModel extends HoistModel {
|
|
|
61
61
|
isNumber(v) &&
|
|
62
62
|
v > Date.now() - 365 * DAYS
|
|
63
63
|
) {
|
|
64
|
-
stats[k] = v ? fmtDateTimeSec(v, {fmt: 'MMM DD HH:mm:ss'}) : null;
|
|
64
|
+
stats[k] = v ? fmtDateTimeSec(v, {fmt: 'MMM DD HH:mm:ss.SSS'}) : null;
|
|
65
65
|
}
|
|
66
66
|
if (isPlainObject(v) || isArray(v)) {
|
|
67
67
|
this.processTimestamps(v);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "69.0.0-SNAPSHOT.
|
|
3
|
+
"version": "69.0.0-SNAPSHOT.1728610416487",
|
|
4
4
|
"description": "Hoist add-on for building and deploying React Applications.",
|
|
5
5
|
"repository": "github:xh/hoist-react",
|
|
6
6
|
"homepage": "https://xh.io",
|