@dereekb/dbx-form 9.16.0 → 9.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/form/io/form.input.directive.mjs +2 -2
- package/fesm2015/dereekb-dbx-form.mjs +1 -1
- package/fesm2015/dereekb-dbx-form.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-form.mjs +1 -1
- package/fesm2020/dereekb-dbx-form.mjs.map +1 -1
- package/mapbox/package.json +4 -4
- package/package.json +4 -4
|
@@ -325,7 +325,7 @@ function dbxFormSourceObservableFromStream(stream$, inputObs, mode$) {
|
|
|
325
325
|
}
|
|
326
326
|
else {
|
|
327
327
|
// pass any updated value while not initializing.
|
|
328
|
-
return state$.pipe(map((x) => x === DbxFormState.INITIALIZING), switchMap((initializing) => {
|
|
328
|
+
return state$.pipe(map((x) => x === DbxFormState.INITIALIZING), distinctUntilChanged(), switchMap((initializing) => {
|
|
329
329
|
if (initializing) {
|
|
330
330
|
return EMPTY;
|
|
331
331
|
}
|