Skip to content

Commit eea3d59

Browse files
committed
[UI] Fix so we can select submodule configs in admin UI
1 parent 1877ff1 commit eea3d59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sensorhub-webui-core/src/main/java/org/sensorhub/ui/GenericConfigForm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ protected ComponentContainer buildSubForm(final String propId, final ComplexProp
642642
subform.setParentForm(this);
643643

644644
// add change button if property is changeable module or object config
645-
if (ModuleConfig.class.isAssignableFrom(beanType))
645+
if (ModuleConfigBase.class.isAssignableFrom(beanType))
646646
{
647647
addChangeModuleButton(subform, propId, prop, beanType);
648648
}

0 commit comments

Comments
 (0)