Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit 4790a5a

Browse files
committed
refactor: Correct additional lettable operator
1 parent e1f4356 commit 4790a5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/angular_devkit/schematics/tools/file-system-engine-host-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ export abstract class FileSystemEngineHostBase implements
255255
if (Symbol.observable in newOptions) {
256256
return newOptions;
257257
} else {
258-
return Observable.of(newOptions);
258+
return observableOf(newOptions);
259259
}
260260
})),
261261
)) as {} as Observable<ResultT>;

0 commit comments

Comments
 (0)