Skip to content

Commit

Permalink
Make finder for field on bulk update dialog more robust.
Browse files Browse the repository at this point in the history
Storage timeline events can refresh when not convenient, so pause for 1/2 a second.
On MSSQL calculated column for a date diff returns an integer, set field format accordingly.
  • Loading branch information
labkey-danield committed Dec 17, 2024
1 parent 9ddd6d0 commit cd92486
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public ToggleButton getToggle(String fieldKey)

public FilteringReactSelect getSelect(String fieldKey)
{
return FilteringReactSelect.finder(getDriver()).withNamedInput(fieldKey).findWhenNeeded(this);
return FilteringReactSelect.finder(getDriver()).withNamedInput(fieldKey).refindWhenNeeded(this);
}

public Input textInput(String fieldKey)
Expand Down

0 comments on commit cd92486

Please sign in to comment.