mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Fix erraneous type
This commit is contained in:
parent
85a8093015
commit
7f0550c0ae
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ function getUpdateStatus<T extends Status>(
|
|||
obj: any,
|
||||
param: { vis: Vis; visData: any; uiState: PersistedState }
|
||||
): { [reqStats in T]: boolean } {
|
||||
const status = {} as { [reqStats in Status]: boolean };
|
||||
const status = {} as { [reqStats in T]: boolean };
|
||||
|
||||
// If the vis type doesn't need update status, skip all calculations
|
||||
if (requiresUpdateStatus.length === 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue