Enhancement 530169 - Linting
diff --git a/src/app/dialogs/responsibility/responsibility.component.spec.ts b/src/app/dialogs/responsibility/responsibility.component.spec.ts
index bef2c6b..a758d74 100644
--- a/src/app/dialogs/responsibility/responsibility.component.spec.ts
+++ b/src/app/dialogs/responsibility/responsibility.component.spec.ts
@@ -262,7 +262,7 @@
     const inkognito: any = component;
 
     scontext.setAllUsers( null );
-    expect( function() {inkognito.mapUserName('otto');} ).toThrowError(EvalError);
+    expect( function() { inkognito.mapUserName('otto'); } ).toThrowError(EvalError);
 
     scontext.setAllUsers( USERS );
     expect(inkognito.mapUserName('unk')).toBe( '[unk]');
diff --git a/src/app/lists/open-notifications/open-notifications.component.ts b/src/app/lists/open-notifications/open-notifications.component.ts
index ff38e3b..a2c276c 100644
--- a/src/app/lists/open-notifications/open-notifications.component.ts
+++ b/src/app/lists/open-notifications/open-notifications.component.ts
@@ -21,7 +21,7 @@
     this.sortingState.column = 'beginDate';
     this.sortingState.isDesc = false;
 
-    this.sessionContext.setSortingState(this.gridId, this.sortingState)
+    this.sessionContext.setSortingState(this.gridId, this.sortingState);
     super.init();
   }
   getNotifications(): void {