Skip to content

Commit

Permalink
Added Charging Station's Model in list
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasBrazi06 committed Oct 13, 2021
1 parent dee5a2e commit 9a97ff8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,20 @@ export class ChargingStationsListTableDataSource extends TableDataSource<Chargin
);
if (this.authorizationService.isAdmin()) {
tableColumns.push(
{
id: 'chargePointVendor',
name: 'chargers.vendor',
headerClass: 'd-none d-lg-table-cell col-20p',
class: 'd-none d-lg-table-cell col-20p',
sortable: true,
},
{
id: 'chargePointModel',
name: 'chargers.model',
headerClass: 'd-none d-lg-table-cell col-20p',
class: 'd-none d-lg-table-cell col-20p',
sortable: true,
},
{
id: 'firmwareVersion',
name: 'chargers.firmware_version',
Expand All @@ -207,13 +221,6 @@ export class ChargingStationsListTableDataSource extends TableDataSource<Chargin
isAngularComponent: true,
angularComponent: ChargingStationsFirmwareStatusCellComponent,
},
{
id: 'chargePointVendor',
name: 'chargers.vendor',
headerClass: 'd-none d-lg-table-cell col-20p',
class: 'd-none d-lg-table-cell col-20p',
sortable: true,
},
{
id: 'ocppVersion',
name: 'chargers.ocpp_version_title',
Expand Down
1 change: 1 addition & 0 deletions src/app/release-notes/release-notes.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export class ReleaseNotesComponent {
`Removed OCPI logo when empty and non standard properties`,
`Enhanced performance logs for tracing traffic per organization`,
`Adding Setec as Charging Station Vendor`,
`Added Charging Station's Model in list`,
],
},
],
Expand Down

0 comments on commit 9a97ff8

Please sign in to comment.