This is an automated email from the ASF dual-hosted git repository.
linkinstar pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-answer.git
The following commit(s) were added to refs/heads/dev by this push:
new 8670e332 chore: fix some typos
8670e332 is described below
commit 8670e332345136422a580d661d7ee47a67f284cb
Author: findmyhappy <[email protected]>
AuthorDate: Wed Apr 24 14:28:48 2024 +0800
chore: fix some typos
Signed-off-by: findmyhappy <[email protected]>
---
charts/values.yaml | 2 +-
ui/src/components/Editor/utils/index.ts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/charts/values.yaml b/charts/values.yaml
index c7a9c20d..8bb36c46 100644
--- a/charts/values.yaml
+++ b/charts/values.yaml
@@ -35,7 +35,7 @@ env:
# [DEBUG INFO WARN ERROR]
value: "INFO"
# uncomment the below values to use AUTO_INSTALL and not have to go through
the setup process.
- # Once used to do the initial setup, these variables wont be used moving
forward.
+ # Once used to do the initial setup, these variables won't be used moving
forward.
# You must at a minimum comment AUTO_INSTALL after initial setup to prevent
an error about the database already being initiated.
# - name: AUTO_INSTALL
# value: "true"
diff --git a/ui/src/components/Editor/utils/index.ts
b/ui/src/components/Editor/utils/index.ts
index 4930c768..2dbc3750 100644
--- a/ui/src/components/Editor/utils/index.ts
+++ b/ui/src/components/Editor/utils/index.ts
@@ -127,7 +127,7 @@ export function htmlRender(el: HTMLElement | null) {
div.appendChild(table);
});
- // add rel nofollow for link not inlcludes domain
+ // add rel nofollow for link not includes domain
el.querySelectorAll('a').forEach((a) => {
const base = window.location.origin;
const targetUrl = new URL(a.href, base);