Skip to content

Commit 10b5c35

Browse files
author
FalkWolsky
committed
Small Text Changes
1 parent e969ee5 commit 10b5c35

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ application-dev-localhost.yaml
1717
.vscode/launch.json
1818
server/api-service/lowcoder-server/src/main/resources/application-local-dev.yaml
1919
translations/locales/node_modules/
20+
.vscode/settings.json

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"titleBar.activeBackground": "#3B431A",
55
"titleBar.activeForeground": "#F9FAF2"
66
},
7-
"java.debug.settings.onBuildFailureProceed": true
7+
"java.debug.settings.onBuildFailureProceed": true,
8+
"java.configuration.updateBuildConfiguration": "automatic"
89
}

client/packages/lowcoder/src/pages/common/header.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -544,14 +544,14 @@ export default function Header(props: HeaderProps) {
544544
Changes will not be saved while another <br/> user is editing this app.
545545
</Text>
546546
<StyledCountdown
547-
title="Editing Availability"
547+
title="App Editing Blocked for:"
548548
value={editingCountdown.current}
549549
onFinish={() => {
550550
setEnableCheckEditingStatus(true)
551551
}}
552552
/>
553553
<Tooltip
554-
title="You will be able to check the editing status after the countdown."
554+
title="Please wait before check the editing status of the App."
555555
placement="bottom"
556556
>
557557
<TacoButton
@@ -565,7 +565,7 @@ export default function Header(props: HeaderProps) {
565565
}}
566566
>
567567
<StyledRefreshIcon />
568-
<span>Check Editing Status</span>
568+
<span>Check App Status</span>
569569
</TacoButton>
570570
</Tooltip>
571571
</Flex>
@@ -576,7 +576,7 @@ export default function Header(props: HeaderProps) {
576576
<EditingNoticeWrapper>
577577
<ProfileImage source={user.avatarUrl} userName={user.username} side={24} />
578578
<EditingHintText>
579-
{`${editingUser?.name || 'Someone'} is editing this app`}
579+
{`${editingUser?.email || 'Someone'} is editing this app`}
580580
</EditingHintText>
581581
<WarningIcon />
582582
</EditingNoticeWrapper>

0 commit comments

Comments
 (0)