Skip to content

Concurrency user display #1175

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Sep 20, 2024
Prev Previous commit
Next Next commit
Small Text Changes
  • Loading branch information
FalkWolsky committed Sep 19, 2024
commit 10b5c358f4d768e6b8e5c359e722fc5953c994d4
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ application-dev-localhost.yaml
.vscode/launch.json
server/api-service/lowcoder-server/src/main/resources/application-local-dev.yaml
translations/locales/node_modules/
.vscode/settings.json
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"titleBar.activeBackground": "#3B431A",
"titleBar.activeForeground": "#F9FAF2"
},
"java.debug.settings.onBuildFailureProceed": true
"java.debug.settings.onBuildFailureProceed": true,
"java.configuration.updateBuildConfiguration": "automatic"
}
8 changes: 4 additions & 4 deletions client/packages/lowcoder/src/pages/common/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -544,14 +544,14 @@ export default function Header(props: HeaderProps) {
Changes will not be saved while another <br/> user is editing this app.
</Text>
<StyledCountdown
title="Editing Availability"
title="App Editing Blocked for:"
value={editingCountdown.current}
onFinish={() => {
setEnableCheckEditingStatus(true)
}}
/>
<Tooltip
title="You will be able to check the editing status after the countdown."
title="Please wait before check the editing status of the App."
placement="bottom"
>
<TacoButton
Expand All @@ -565,7 +565,7 @@ export default function Header(props: HeaderProps) {
}}
>
<StyledRefreshIcon />
<span>Check Editing Status</span>
<span>Check App Status</span>
</TacoButton>
</Tooltip>
</Flex>
Expand All @@ -576,7 +576,7 @@ export default function Header(props: HeaderProps) {
<EditingNoticeWrapper>
<ProfileImage source={user.avatarUrl} userName={user.username} side={24} />
<EditingHintText>
{`${editingUser?.name || 'Someone'} is editing this app`}
{`${editingUser?.email || 'Someone'} is editing this app`}
</EditingHintText>
<WarningIcon />
</EditingNoticeWrapper>
Expand Down
Loading