[platform][eel] IJPL-236985 Docker project. Project Settings. Modules, paths tab, output paths, File Chooser: container is absent in the tree

(cherry picked from commit 649b3b1d704cf81f7adac4b51f4131a804f385b9)

IJ-CR-194300

GitOrigin-RevId: 1b034c33b0b30bfef53c0cae34f693fe40df5338
This commit is contained in:
Rustam Vishniakov
2026-03-02 13:53:14 +01:00
committed by intellij-monorepo-bot
parent 68f0b35df9
commit ab95e6cd70

View File

@@ -51,7 +51,7 @@ class BuildElementsEditorUi(
indent {
row(JavaUiBundle.message("module.paths.output.label")) {
val descriptor = descriptor(JavaUiBundle.message("module.paths.output.title"))
compilerOutputPath = textFieldWithBrowseButton(descriptor)
compilerOutputPath = textFieldWithBrowseButton(descriptor, module.project)
.applyToComponent {
InsertPathAction.addTo(textField, descriptor)
FileChooserFactory.getInstance().installFileCompletion(textField, descriptor, true, null)
@@ -62,7 +62,7 @@ class BuildElementsEditorUi(
}
row(JavaUiBundle.message("module.paths.test.output.label")) {
val descriptor = descriptor(JavaUiBundle.message("module.paths.test.output.title"))
testCompilerOutputPath = textFieldWithBrowseButton(descriptor)
testCompilerOutputPath = textFieldWithBrowseButton(descriptor, module.project)
.applyToComponent {
InsertPathAction.addTo(textField, descriptor)
FileChooserFactory.getInstance().installFileCompletion(textField, descriptor, true, null)