Skip to content

Commit c146fd0

Browse files
author
FalkWolsky
committedApr 1, 2024
Small text fixes
1 parent 55a1fc1 commit c146fd0

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed
 

‎client/packages/lowcoder/src/i18n/locales/en.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export const en = {
135135
"moduleListTitle": "Modules",
136136
"pluginListTitle": "Plugins",
137137
"emptyModules": "Modules are reusable Mikro-Apps. You can embed them in your App.",
138-
"searchNotFound": "Can't find the right component? Submit an issue",
138+
"searchNotFound": "Can't find the right component?",
139139
"emptyPlugins": "No Plugins Added",
140140
"contactUs": "Contact Us",
141141
"issueHere": "here."

‎client/packages/lowcoder/src/pages/editor/right/styledComponent.tsx

+5-4
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,19 @@ export const EmptyCompContent = () => {
5858
text={
5959
<>
6060
{trans("rightPanel.searchNotFound")}
61-
{aboutUsUrl && (
61+
{aboutUsUrl && (
6262
<>
6363
<br />
6464
<StyledLink target="_blank" href={aboutUsUrl}>
6565
{trans("rightPanel.contactUs")}
6666
</StyledLink>
6767
</>
6868
)}
69+
<br /><br />
70+
{trans("help.submitIssue")}
71+
<br />
6972
{issueUrl && (
70-
<StyledLink target="_blank" href={issueUrl}>
71-
{trans("rightPanel.issueHere")}
72-
</StyledLink>
73+
<StyledLink target="_blank" href={issueUrl}>{trans("rightPanel.issueHere")}</StyledLink>
7374
)}
7475
</>
7576
}

0 commit comments

Comments
 (0)
Please sign in to comment.