@trops/dash-core 0.1.263 → 0.1.264
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/dist/electron/index.js +2 -0
- package/dist/electron/index.js.map +1 -1
- package/dist/index.js +41 -32
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/electron/index.js
CHANGED
|
@@ -31675,6 +31675,8 @@ var schedulerController_1 = schedulerController$2;
|
|
|
31675
31675
|
// has full display data without needing ComponentManager.
|
|
31676
31676
|
if (result?.config && existingEntry) {
|
|
31677
31677
|
const cfg = result.config;
|
|
31678
|
+
if (cfg.displayName) existingEntry.displayName = cfg.displayName;
|
|
31679
|
+
if (cfg.description) existingEntry.description = cfg.description;
|
|
31678
31680
|
if (cfg.scope && !existingEntry.scope)
|
|
31679
31681
|
existingEntry.scope = cfg.scope;
|
|
31680
31682
|
if (cfg.icon && !existingEntry.icon) existingEntry.icon = cfg.icon;
|