Skip to content

Commit

Permalink
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
Browse files Browse the repository at this point in the history
…-fix'
  • Loading branch information
kibanamachine committed Dec 4, 2024
1 parent 668a4a5 commit 239f4ec
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,7 @@ export function initializeDataViewsManager(
const dataViewsSubscription = combineLatest([controlGroupDataViewsPipe, childDataViewsPipe])
.pipe(
switchMap(async ([controlGroupDataViews, childDataViews]) => {
const allDataViews = [
...(controlGroupDataViews ?? []),
...childDataViews,
];
const allDataViews = [...(controlGroupDataViews ?? []), ...childDataViews];
if (allDataViews.length === 0) {
try {
const defaultDataView = await dataService.dataViews.getDefaultDataView();
Expand Down

0 comments on commit 239f4ec

Please sign in to comment.