This is an automated email from the ASF dual-hosted git repository. marat pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-karavan.git
The following commit(s) were added to refs/heads/main by this push: new bb2c3c44 Temporary hide loading text bb2c3c44 is described below commit bb2c3c44cc10f4455c274a81bfda84b4d6c84a7a Author: Marat Gubaidullin <marat.gubaidul...@gmail.com> AuthorDate: Tue Apr 18 19:00:55 2023 -0400 Temporary hide loading text --- karavan-vscode/webview/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/karavan-vscode/webview/App.tsx b/karavan-vscode/webview/App.tsx index 0ac406a2..3c3facb5 100644 --- a/karavan-vscode/webview/App.tsx +++ b/karavan-vscode/webview/App.tsx @@ -182,7 +182,7 @@ class App extends React.Component<Props, State> { {!loaded && <PageSection variant={dark ? "dark" : "light"} className="loading-page"> <Spinner className="progress-stepper" isSVG diameter="80px" aria-label="Loading..." /> - {loadingMessages.map(message => <Text component={TextVariants.h5}>{message}</Text>)} + {/* {loadingMessages.map(message => <Text component={TextVariants.h5}>{message}</Text>)} */} <Text component={TextVariants.h5}>Loading...</Text> </PageSection> }