Skip to content

Commit cb4fbb0

Browse files
committed
update after merge from develop
1 parent b8c343d commit cb4fbb0

1 file changed

Lines changed: 1 addition & 14 deletions

File tree

src/org/labkey/test/components/ui/grids/QueryGrid.java

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -720,15 +720,8 @@ public QueryGrid resetToDefaultState(boolean revertDefaultView)
720720

721721
public QueryChartPanel showChart(String chartName)
722722
{
723-
// if there was a different chart already shown, wait for it to close first
724-
// NOTE: this will need to be updated soon with the changes for the "multiple chart rendering" feature
725-
WebElement prevChart = hasChartPanel() ? getChartPanel().getSvgChart() : null;
726-
727723
elementCache().chartsMenu.clickSubMenu(false, chartName);
728-
729-
if (prevChart != null)
730-
getWrapper().shortWait().until(ExpectedConditions.stalenessOf(prevChart));
731-
return getChartPanel();
724+
return getChartPanel(chartName);
732725
}
733726

734727
public QueryChartDialog createChart()
@@ -772,12 +765,6 @@ public QueryChartPanel getChartPanel(String name)
772765
return new QueryChartPanel.QueryChartPanelFinder(getDriver(), this, name).waitFor(this);
773766
}
774767

775-
public boolean hasChartPanel()
776-
{
777-
QueryChartPanel chartPanel = new QueryChartPanel.QueryChartPanelFinder(getDriver(), this).findOrNull(this);
778-
return chartPanel != null;
779-
}
780-
781768
public WebElement showRReport(String reportName)
782769
{
783770
elementCache().chartsMenu.clickSubMenu(false, reportName);

0 commit comments

Comments
 (0)