Skip to content

Commit f22e620

Browse files
Allow access in root container (#247)
1 parent 20e4192 commit f22e620

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hdrl/src/org/labkey/hdrl/HDRLModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected void init()
7575
@Override
7676
public boolean isAvailable(Container container)
7777
{
78-
return container.getActiveModules().contains(this);
78+
return container.isRoot() || container.getActiveModules().contains(this);
7979
}
8080

8181
@Override

0 commit comments

Comments
 (0)