提交 fa24012b 编写于 作者: S Serge Rider

#6883 Fix task type save

上级 c8c8a833
......@@ -130,6 +130,10 @@ public class TaskImpl implements DBTTask, DBPNamedObject2, DBPObjectWithDescript
return type;
}
public void setType(DBTTaskType type) {
this.type = type;
}
@NotNull
@Override
public Map<String, Object> getProperties() {
......
......@@ -288,6 +288,7 @@ class TaskConfigurationWizardPageTask extends ActiveWizardPage
if (task != null) {
task.setName(taskLabelText.getText());
task.setDescription(taskDescriptionText.getText());
task.setType(selectedTaskType);
if (taskConfigPanel != null) {
taskConfigPanel.saveSettings();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册