@dereekb/dbx-form 9.24.19 → 9.24.21

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.
@@ -931,7 +931,7 @@ class DbxScheduleSelectionCalendarDateDaysComponent {
931
931
  constructor(dbxCalendarStore, dbxCalendarScheduleSelectionStore) {
932
932
  this.dbxCalendarStore = dbxCalendarStore;
933
933
  this.dbxCalendarScheduleSelectionStore = dbxCalendarScheduleSelectionStore;
934
- this.template$ = this.dbxCalendarScheduleSelectionStore.scheduleDays$.pipe(map(enabledDaysFromDateScheduleDayCodes), shareReplay());
934
+ this.template$ = this.dbxCalendarScheduleSelectionStore.scheduleDays$.pipe(map(enabledDaysFromDateScheduleDayCodes), shareReplay(1));
935
935
  this.isFormModified = (value) => {
936
936
  const newSetValue = new Set(dateScheduleDayCodesFromEnabledDays(value));
937
937
  return this.dbxCalendarScheduleSelectionStore.scheduleDays$.pipe(map((currentSet) => {