mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-07 12:57:45 +00:00
Merge pull request #421 from LayZeeDK/LayZeeDK/fix/angular-extend-class/correct-operator-order
fix: the `takeUntil` operator must be last
This commit is contained in:
@@ -959,11 +959,11 @@ class WindowSizeService {
|
||||
height: window.innerHeight,
|
||||
width: window.innerWidth,
|
||||
})),
|
||||
takeUntil(this.destroy$),
|
||||
startWith({
|
||||
height: window.innerHeight,
|
||||
width: window.innerWidth,
|
||||
})
|
||||
}),
|
||||
takeUntil(this.destroy$)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user