Skip to content

Commit

Permalink
Add back protected delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
alec-livefront committed Feb 5, 2025
1 parent 9853cde commit 271376d
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ interface DeviceTableData {
imports: [CommonModule, SharedModule, TableModule, PopoverModule],
})
export class DeviceManagementComponent {
readonly tableId = "device-management-table";
dataSource = new TableDataSource<DeviceTableData>();
currentDevice: DeviceView | undefined;
loading = true;
asyncActionLoading = false;
protected readonly retableId = "device-management-table";
protected dataSource = new TableDataSource<DeviceTableData>();
protected currentDevice: DeviceView | undefined;
protected loading = true;
protected asyncActionLoading = false;

constructor(
private i18nService: I18nService,
Expand Down

0 comments on commit 271376d

Please sign in to comment.