We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 374e549 commit 34db4dcCopy full SHA for 34db4dc
plugin/src/software/aws/toolkits/eclipse/amazonq/views/AmazonQChatWebview.java
@@ -142,9 +142,11 @@ public final void onEvent(final AuthState authState) {
142
// chat view
143
if (browser != null && !browser.isDisposed() && !chatStateManager.hasPreservedState()) {
144
Optional<String> content = getContent();
145
- if (!content.isPresent() && !LspStatusManager.getInstance().lspFailed()) {
+ if (!content.isPresent()) {
146
canDisposeState = true;
147
- ViewVisibilityManager.showChatAssetMissingView("update");
+ if (!LspStatusManager.getInstance().lspFailed()) {
148
+ ViewVisibilityManager.showChatAssetMissingView("update");
149
+ }
150
} else {
151
browser.setText(content.get()); // Display the chat client
152
}
0 commit comments