Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc8282d1

Browse files
authored
Merge pull requestlowcoder-org#636 from raheeliftikhar5/data-queries-fix
Allow editing folder name + handle queries name overflow issue
2 parents96da6e4 +6ee55e2 commitc8282d1

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

‎client/packages/lowcoder-design/src/components/edit.tsx‎

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const TextWrapper = styled.div`
5353
white-space: nowrap;
5454
`;
5555
constEditIcon=styled(Edit)`
56-
visibility: hidden;
56+
//visibility: hidden;
5757
margin-left: 8px;
5858
flex-shrink: 0;
5959
`;
@@ -130,13 +130,15 @@ export const EditText = (props: EditTextProps) => {
130130
<TextWrapperclassName={"taco-edit-text-body"}title={props.text}>
131131
{props.text}
132132
</TextWrapper>
133-
<EditIcon
134-
onClick={(e)=>{
135-
e.stopPropagation();
136-
!props.disabled&&setEditing(true);
137-
}}
138-
className={"taco-edit-text-icon"}
139-
/>
133+
{props.forceClickIcon&&!props.disabled&&(
134+
<EditIcon
135+
onClick={(e)=>{
136+
e.stopPropagation();
137+
!props.disabled&&setEditing(true);
138+
}}
139+
className={"taco-edit-text-icon"}
140+
/>
141+
)}
140142
</EditTextWrapper>
141143
)}
142144
{props.prefixIcon&&<Prefix>{props.prefixIcon}</Prefix>}

‎client/packages/lowcoder/src/pages/editor/bottom/BottomSidebar.tsx‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ export function BottomSidebar(props: BottomSidebarProps) {
320320
}
321321

322322
constHighlightBorder=styled.div<{$active:boolean;$foldable:boolean;$level:number}>`
323+
max-width: 100%;
323324
flex: 1;
324325
display: flex;
325326
padding-left:${(props)=>props.$level*20+(props.$foldable ?0 :14)}px;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp