Skip to content

Commit

Permalink
Scheduler: Remove redundant type cast. (#25560)
Browse files Browse the repository at this point in the history
Co-authored-by: Ilya Vinogradov <[email protected]>
  • Loading branch information
williamvinogradov and Ilya Vinogradov authored Sep 8, 2023
1 parent 550a36d commit 9245e28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ class RowsView extends ColumnsView {
if (loadPanel.option('visible') && !isLoading) {
that._hideLoadingTimeoutID = setTimeout(() => {
loadPanel.option(visibilityOptions);
}, LOADPANEL_HIDE_TIMEOUT) as unknown as number;
}, LOADPANEL_HIDE_TIMEOUT);
} else {
loadPanel.option(visibilityOptions);
}
Expand Down

0 comments on commit 9245e28

Please sign in to comment.