diff --git a/src/app/applications/datatarget/mqtt-edit/mqtt-edit.component.html b/src/app/applications/datatarget/mqtt-edit/mqtt-edit.component.html index 6977d652..acd45b98 100644 --- a/src/app/applications/datatarget/mqtt-edit/mqtt-edit.component.html +++ b/src/app/applications/datatarget/mqtt-edit/mqtt-edit.component.html @@ -14,9 +14,9 @@
|
-
-
+ |
+
+
+
+ |
+
+
+
+
+ |
-
+
- {{'DATATARGET.DELETE' | translate}}
- |
-
-
-
-
- |
-
-
-
- {{'DATATARGET.DELETE' | translate}} - |
+
|
{{element.name}}
{{element.name}}
diff --git a/src/app/gateway/gateway-table/gateway-table.component.ts b/src/app/gateway/gateway-table/gateway-table.component.ts
index f5e05dd6..6fc4bc43 100644
--- a/src/app/gateway/gateway-table/gateway-table.component.ts
+++ b/src/app/gateway/gateway-table/gateway-table.component.ts
@@ -1,139 +1,148 @@
-import { ChirpstackGatewayService } from 'src/app/shared/services/chirpstack-gateway.service';
-import { TranslateService } from '@ngx-translate/core';
-import { Gateway, GatewayResponseMany } from '../gateway.model';
-import {
- faExclamationTriangle,
- faCheckCircle,
-} from '@fortawesome/free-solid-svg-icons';
-import moment from 'moment';
-import { Component, ViewChild, AfterViewInit, Input } from '@angular/core';
-import { MatPaginator, PageEvent } from '@angular/material/paginator';
-import { Observable, of as observableOf, Subject } from 'rxjs';
-import { catchError, map, startWith, switchMap } from 'rxjs/operators';
-import { MeService } from '@shared/services/me.service';
-import { DeleteDialogService } from '@shared/components/delete-dialog/delete-dialog.service';
-import { environment } from '@environments/environment';
-import { MatSort } from '@angular/material/sort';
-import { MatTableDataSource } from '@angular/material/table';
-import { tableSorter } from '@shared/helpers/table-sorting.helper';
-import { OrganizationAccessScope } from '@shared/enums/access-scopes';
-import { DefaultPageSizeOptions } from '@shared/constants/page.constants';
-
-@Component({
- selector: 'app-gateway-table',
- templateUrl: './gateway-table.component.html',
- styleUrls: ['./gateway-table.component.scss'],
-})
-export class GatewayTableComponent implements AfterViewInit {
- @Input() organisationChangeSubject: Subject |