Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Platov <[email protected]>
  • Loading branch information
SasLord committed Jun 4, 2024
1 parent f899043 commit 1a2be29
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
8 changes: 6 additions & 2 deletions packages/ui/src/components/NavItem.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,12 @@
&:not(.noActions):hover,
&:not(.noActions).showMenu {
.hulyNavItem-actions { display: flex; }
.hulyNavItem-icon.right { display: none; }
.hulyNavItem-actions {
display: flex;
}
.hulyNavItem-icon.right {
display: none;
}
}
&.disabled {
cursor: not-allowed;
Expand Down
8 changes: 7 additions & 1 deletion plugins/setting-resources/src/components/ClassSetting.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,13 @@
</div>
</div>
<Scroller>
<NavGroup label={setting.string.Classes} highlighted={_class !== undefined} categoryName={'classes'} noDivider isFold>
<NavGroup
label={setting.string.Classes}
highlighted={_class !== undefined}
categoryName={'classes'}
noDivider
isFold
>
<ClassHierarchy
{classes}
{_class}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,9 @@
$: visibleSpace = filteredSpaces.find((fs) => fs._id === currentSpace)
$: empty = filteredSpaces.length === 0 || filteredSpaces === undefined
$: visible =
((visibleSpace !== undefined && !deselect) || !(currentFragment === undefined || currentFragment === '')) && !deselect && !empty
((visibleSpace !== undefined && !deselect) || !(currentFragment === undefined || currentFragment === '')) &&
!deselect &&
!empty
</script>

<TreeNode
Expand Down

0 comments on commit 1a2be29

Please sign in to comment.