Skip to content

Commit 3f08747

Browse files
committed
Minor cache fixes
1 parent fded7cb commit 3f08747

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/org/labkey/test/params/FieldDefinition.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import org.json.JSONObject;
2323
import org.junit.Assert;
2424
import org.labkey.api.exp.query.ExpSchema;
25+
import org.labkey.remoteapi.domain.ConditionalFormat;
2526
import org.labkey.remoteapi.domain.PropertyDescriptor;
2627
import org.labkey.remoteapi.query.Filter;
2728
import org.labkey.test.components.html.OptionSelect;
@@ -216,6 +217,13 @@ public FieldDefinition setHidden(Boolean hidden)
216217
return this;
217218
}
218219

220+
@Override
221+
public FieldDefinition setConditionalFormats(List<ConditionalFormat> conditionalFormats)
222+
{
223+
super.setConditionalFormats(conditionalFormats);
224+
return this;
225+
}
226+
219227
public LookupInfo getLookup()
220228
{
221229
return _type.getLookupInfo();

0 commit comments

Comments
 (0)