Skip to content

Commit

Permalink
Scheduler: Remove redundant type cast. (#25563)
Browse files Browse the repository at this point in the history
Co-authored-by: Ilya Vinogradov <ilya.vinogradov@devexpress.com>
  • Loading branch information
williamvinogradov and Ilya Vinogradov committed Sep 8, 2023
1 parent f30805d commit 718889e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/__internal/grids/grid_core/views/m_rows_view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,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 718889e

Please sign in to comment.