Skip to content

Fix CI Check fail #231

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 1 commit into from
Sep 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/CodeEditor/CodeEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ class CodeEditor extends Component {
Không thể tải được Babel.
<br />
<br />
Lỗi này có thể do phần mềm chặn quảng cáo. Nếu bạn sử dụng chúng,
cân nhắc thêm reactjs.org vào danh sách cho phép để trình live code
này có thể chạy được.
Lỗi này có thể do phần mềm chặn quảng cáo. Nếu bạn sử dụng chúng, cân
nhắc thêm reactjs.org vào danh sách cho phép để trình live code này có
thể chạy được.
</span>
);
} else if (error != null) {
Expand Down
4 changes: 2 additions & 2 deletions src/components/ErrorDecoder/ErrorDecoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ function ErrorResult(props: {|code: ?string, msg: string|}) {
if (!code) {
return (
<p>
Khi bạn gặp lỗi, bạn sẽ nhận được một link đến trang này để hiện thị
cho bạn toàn bộ nội dung lỗi.
Khi bạn gặp lỗi, bạn sẽ nhận được một link đến trang này để hiện thị cho
bạn toàn bộ nội dung lỗi.
</p>
);
}
Expand Down
4 changes: 3 additions & 1 deletion src/components/LayoutHeader/DocSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ class DocSearch extends Component<{}, State> {
inputSelector: '#algolia-doc-search',
});
} else {
console.warn('Không tải được Trình tìm kiếm lúc này nên tạm thời sẽ tắt nó.');
console.warn(
'Không tải được Trình tìm kiếm lúc này nên tạm thời sẽ tắt nó.',
);
this.setState({enabled: false});
}
}
Expand Down