Skip to content

Commit 1a292e0

Browse files
committed
update message
1 parent 9616d51 commit 1a292e0

File tree

1 file changed

+2
-1
lines changed
  • plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/toolwindow

1 file changed

+2
-1
lines changed

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/toolwindow/AmazonQPanel.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ class AmazonQPanel(val project: Project, private val scope: CoroutineScope) : Di
105105
}
106106
browser.complete(null)
107107
} else if (!isQSupportedInThisVersion()) {
108-
webviewContainer.add(JBTextArea("${message("q.unavailable")}\n ${message("q.unavailable.node")}"))
108+
val currentBuild = com.intellij.openapi.application.ApplicationInfo.getInstance().build
109+
webviewContainer.add(JBTextArea("Amazon Q is not supported in your version ${currentBuild}. Please update to the latest version of your IDE."))
109110
browser.complete(null)
110111
} else {
111112
val loadingPanel = JBLoadingPanel(null, this)

0 commit comments

Comments
 (0)