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 40e0a4d commit c13eba0Copy full SHA for c13eba0
utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogWindow.kt
@@ -13,7 +13,7 @@ class JsDialogWindow(val model: JsTestsModel): DialogWrapper(model.project) {
13
14
private val items = model.fileMethods
15
16
- private val functionsTable = JSMemberSelectionTable(items, null, "").apply {
+ private val functionsTable = JSMemberSelectionTable(items, null, null).apply {
17
items?.let {
18
val height = this.rowHeight * (items.size.coerceAtMost(12) + 1)
19
this.preferredScrollableViewportSize = JBUI.size(-1, height)
0 commit comments