We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c2f523 commit adc71f6Copy full SHA for adc71f6
1 file changed
modules/gui/src/com/haulmont/addon/admintools/gui/config_loader/ConfigLoader.java
@@ -58,8 +58,8 @@ public class ConfigLoader extends AbstractWindow {
58
@Override
59
public void init(Map<String, Object> params) {
60
super.init(params);
61
- configDir = Paths.get(configuration.getConfig(GlobalConfig.class).getConfDir()).getParent();
62
- helpLabel.setValue(String.format(getMessage("helpMessage"), configuration.getConfig(GlobalConfig.class).getConfDir()));
+ configDir = Paths.get(configuration.getConfig(GlobalConfig.class).getConfDir());
+ helpLabel.setValue(String.format(getMessage("helpMessage"), configDir.normalize()));
63
}
64
65
public void apply() {
0 commit comments