Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b123768474 | |||
| f292e7a7f4 |
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2026-02-02 - 3.41.6 - fix(dees-simple-appdash)
|
||||||
|
respect selectedView when loading initial view, falling back to the first tab
|
||||||
|
|
||||||
|
- firstUpdated now loads this.selectedView if set, otherwise loads the first view tab
|
||||||
|
- Prevents always loading the first tab and preserves a previously selected view on initial render
|
||||||
|
|
||||||
## 2026-02-01 - 3.41.5 - fix(dees-service-lib-loader)
|
## 2026-02-01 - 3.41.5 - fix(dees-service-lib-loader)
|
||||||
prevent horizontal scrollbar by offsetting xterm WidthCache measurement container
|
prevent horizontal scrollbar by offsetting xterm WidthCache measurement container
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@design.estate/dees-catalog",
|
"name": "@design.estate/dees-catalog",
|
||||||
"version": "3.41.5",
|
"version": "3.41.6",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.",
|
"description": "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.",
|
||||||
"main": "dist_ts_web/index.js",
|
"main": "dist_ts_web/index.js",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-catalog',
|
name: '@design.estate/dees-catalog',
|
||||||
version: '3.41.5',
|
version: '3.41.6',
|
||||||
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
|
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -390,7 +390,8 @@ export class DeesSimpleAppDash extends DeesElement {
|
|||||||
const domtools = await this.domtoolsPromise;
|
const domtools = await this.domtoolsPromise;
|
||||||
super.firstUpdated(_changedProperties);
|
super.firstUpdated(_changedProperties);
|
||||||
if (this.viewTabs && this.viewTabs.length > 0) {
|
if (this.viewTabs && this.viewTabs.length > 0) {
|
||||||
await this.loadView(this.viewTabs[0]);
|
const viewToLoad = this.selectedView || this.viewTabs[0];
|
||||||
|
await this.loadView(viewToLoad);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user