Skip to content

Commit 6b5ef8e

Browse files
committed
fix lint
1 parent 5920424 commit 6b5ef8e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sandbox-app/src/app/entities/containers/entity/entity.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ describe('BriebugComponent', () => {
164164
);
165165
});
166166

167-
it("should dispatch CreateBriebug if an ID is not present", () => {
167+
it('should dispatch CreateBriebug if an ID is not present', () => {
168168
component.valid = true;
169169
component.briebugEdits = generateBriebug();
170170
delete component.briebugEdits.id;

sandbox-app/src/app/entities/containers/entity/entity.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ import {
1212
combineLatest
1313
} from 'rxjs/operators';
1414

15-
import { briebugLoading, currentBriebug, briebugError } from "@state/briebug";
15+
import { briebugLoading, currentBriebug, briebugError } from '@state/briebug';
1616
import { Briebug } from '@state/briebug/briebug.model';
1717
import {
1818
LoadBriebugById,
1919
CreateBriebug,
2020
UpdateBriebug,
2121
SelectBriebugById
22-
} from "@state/briebug/briebug.actions";
22+
} from '@state/briebug/briebug.actions';
2323
import { BriebugState } from '@state/briebug/briebug.reducer';
2424

2525
@Component({

0 commit comments

Comments
 (0)