Skip to content

Commit 43ae682

Browse files
Feedback changes.
Sorting for two columns in frontend. One on application (status) and on for devices (network technology).
1 parent c1e7374 commit 43ae682

File tree

8 files changed

+535
-482
lines changed

8 files changed

+535
-482
lines changed

package-lock.json

Lines changed: 23 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
"monaco-editor": "^0.33.0",
4545
"ng": "0.0.0",
4646
"ng-inline-svg": "^11.0.0",
47+
"ngx-cookie-service": "^14.0.1",
4748
"ngx-monaco-editor-v2": "^14.0.4",
4849
"ngx-papaparse": "^5.0.0",
4950
"popper.js": "^1.16.1",

src/app/app.module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import { MatSelectSearchModule } from '@shared/components/mat-select-search/mat-
3434
import { UserPageComponent } from './admin/users/user-page/user-page.component';
3535
import { SharedModule } from '@shared/shared.module';
3636
import { PipesModule } from '@shared/pipes/pipes.module';
37+
import { CookieService } from 'ngx-cookie-service';
3738

3839
export function HttpLoaderFactory(http: HttpClient) {
3940
return new TranslateHttpLoader(http, './assets/i18n/', '.json');
@@ -98,6 +99,7 @@ export function tokenGetter() {
9899
{ provide: HTTP_INTERCEPTORS, useClass: AuthJwtInterceptor, multi: true },
99100
{ provide: SAVER, useFactory: getSaver },
100101
{ provide: MatPaginatorIntl, useClass: MatPaginatorIntlDa },
102+
{ provide: CookieService }
101103
],
102104
})
103105
export class AppModule {}

0 commit comments

Comments
 (0)