feat(lite): uncollapse hosts by default (#6428)
This commit is contained in:
parent
81abc091de
commit
f44f5199c6
@ -4,6 +4,7 @@
|
||||
|
||||
- Invalidate sessionId token after logout (PR [#6480](https://github.com/vatesfr/xen-orchestra/pull/6480))
|
||||
- Settings page (PR [#6418](https://github.com/vatesfr/xen-orchestra/pull/6418))
|
||||
- Uncollapse hosts in the tree by default (PR [#6428](https://github.com/vatesfr/xen-orchestra/pull/6428))
|
||||
|
||||
## **0.1.0**
|
||||
|
||||
|
@ -53,7 +53,7 @@ const uiStore = useUiStore();
|
||||
const isCurrentHost = computed(
|
||||
() => props.hostOpaqueRef === uiStore.currentHostOpaqueRef
|
||||
);
|
||||
const [isExpanded, toggle] = useToggle();
|
||||
const [isExpanded, toggle] = useToggle(true);
|
||||
|
||||
const isTooltipDisabled = (target: HTMLElement) =>
|
||||
!hasEllipsis(target.querySelector(".text"));
|
||||
|
Loading…
Reference in New Issue
Block a user