Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/org/labkey/test/components/ui/grids/GridFilterModal.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ public class GridFilterModal extends ModalDialog

public GridFilterModal(WebDriver driver, UpdatingComponent linkedComponent)
{
super(new ModalDialogFinder(driver));
this(driver, linkedComponent, "Filter");
}

public GridFilterModal(WebDriver driver, UpdatingComponent linkedComponent, String titlePrefix)
{
super(new ModalDialogFinder(driver).withTitle(titlePrefix));
_linkedComponent = linkedComponent;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class EntityFieldFilterModal extends GridFilterModal
{
public EntityFieldFilterModal(WebDriver driver, UpdatingComponent linkedComponent)
{
super(driver, linkedComponent);
super(driver, linkedComponent, "Select");
}

@Override
Expand Down
Loading