Skip to content

Commit 41e67aa

Browse files
committed
formating removed-49
1 parent d841787 commit 41e67aa

File tree

1 file changed

+2
-4
lines changed
  • client/packages/lowcoder/src/comps/comps/navComp

1 file changed

+2
-4
lines changed

client/packages/lowcoder/src/comps/comps/navComp/navComp.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const Item = styled.div<{
7474
text-transform:${(props) => (props.$textTransform ? props.$textTransform : '')};
7575
text-decoration:${(props) => (props.$textDecoration ? props.$textDecoration : '')};
7676
margin:${(props) => props.$margin ? props.$margin : '0px'};
77-
77+
7878
&:hover {
7979
color: ${(props) => props.$activeColor};
8080
cursor: pointer;
@@ -242,8 +242,7 @@ const NavCompBase = new UICompBuilder(childrenMap, (props) => {
242242
</Section>
243243
)}
244244

245-
{(useContext(EditorContext).editorModeStatus === "layout" ||
246-
useContext(EditorContext).editorModeStatus === "both") && (
245+
{(useContext(EditorContext).editorModeStatus === "layout" || useContext(EditorContext).editorModeStatus === "both") && (
247246
<Section name={sectionNames.layout}>
248247
{children.horizontalAlignment.propertyView({
249248
label: trans("navigation.horizontalAlignment"),
@@ -252,7 +251,6 @@ const NavCompBase = new UICompBuilder(childrenMap, (props) => {
252251
{hiddenPropertyView(children)}
253252
</Section>
254253
)}
255-
256254

257255
{(useContext(EditorContext).editorModeStatus === "logic" || useContext(EditorContext).editorModeStatus === "both") && (
258256
<Section name={sectionNames.advanced}>

0 commit comments

Comments
 (0)