Skip to content

Commit 7a0564f

Browse files
committed
IKC-478 fixes after merge
1 parent e2ca0b5 commit 7a0564f

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

kouncil-backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<springdoc-openapi-ui.version>1.8.0</springdoc-openapi-ui.version>
1818
<swagger-annotations.version>2.2.30</swagger-annotations.version>
1919
<testcontainers.version>1.17.6</testcontainers.version>
20-
<postgresql.version>42.7.3</postgresql.version>
20+
<postgresql.version>42.7.5</postgresql.version>
2121
<h2database.version>2.3.232</h2database.version>
2222
<spring.okta.version>3.0.7</spring.okta.version>
2323
</properties>

kouncil-frontend/apps/kouncil/src/app/survey/survey.component.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {
22
ChangeDetectionStrategy,
33
Component,
44
OnDestroy,
5-
OnInit,
65
QueryList,
76
ViewChildren,
87
ViewEncapsulation
@@ -54,7 +53,7 @@ import {SnackBarComponent, SnackBarData, SnackBarType} from '@app/common-utils';
5453
changeDetection: ChangeDetectionStrategy.OnPush,
5554
encapsulation: ViewEncapsulation.None
5655
})
57-
export class SurveyComponent implements OnInit, OnDestroy {
56+
export class SurveyComponent implements OnDestroy {
5857

5958
showPanel$: Observable<boolean> = this.surveyService.showPanelObservable$;
6059
hidePanel: boolean = false;
@@ -75,9 +74,6 @@ export class SurveyComponent implements OnInit, OnDestroy {
7574
}));
7675
}
7776

78-
ngOnInit(): void {
79-
}
80-
8177
ngOnDestroy(): void {
8278
this.subscriptions.unsubscribe();
8379
}

0 commit comments

Comments
 (0)