Skip to content

Commit e87836e

Browse files
fix: correct dateFormat getter call in SettingsService.getBusinessDates (#2731)
1 parent 67ccfe7 commit e87836e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/settings/settings.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ export class SettingsService {
248248
this.setBusinessDate(this.dateUtils.formatDate(dateVal, SettingsService.businessDateFormat));
249249
this.alertService.alert({
250250
type: dateType + ' Set',
251-
message: this.dateUtils.formatDate(dateVal, this.dateFormat())
251+
message: this.dateUtils.formatDate(dateVal, this.dateFormat)
252252
});
253253
return;
254254
}

0 commit comments

Comments
 (0)