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

Commit d18d53b

Browse files
author
Sam Graber
authored
Merge pull request #367 from SamGraber/lambda
Lambda
2 parents 59da74a + ac127f2 commit d18d53b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/behaviors/autosave/autosave.tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ describe('AutosaveDirective', () => {
199199

200200
autosave.autosave();
201201

202-
sinon.assert.notCalled(autosaveAction.trigger);
202+
sinon.assert.notCalled(autosaveAction.waitOn);
203203
});
204204
});
205205
});

source/components/dialog/dialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class DialogComponent extends FormComponent {
6161
this.dialogRoot.closeDialog.next(null);
6262
}
6363

64-
submitAndClose(): Observable<any> {
64+
submitAndClose = (): Observable<any> => {
6565
const waitOn = this.submitAndWait();
6666
return this.asyncHelper.waitAsObservable(waitOn).do((result) => {
6767
if (result !== false) {

0 commit comments

Comments
 (0)