/>
<td class="cs-table__name-col">{{ getId() }}</td>
<td class="cs-table__stopped-col">{{ getStopped() }}</td>
+ <td class="cs-table__registration-status-col">{{ getRegistrationStatus() }}</td>
<td class="cs-table__vendor-col">{{ getVendor() }}</td>
<td class="cs-table__model-col">{{ getModel() }}</td>
<td class="cs-table__firmware-col">{{ getFirmwareVersion() }}</td>
return Utils.ifUndefined<string>(getInfo().firmwareVersion, 'Ø');
}
function getStopped(): string {
- return props.chargingStation.stopped ? 'Yes' : 'No';
+ return props.chargingStation.stopped === true ? 'Yes' : 'No';
+}
+function getRegistrationStatus(): string {
+ return props.chargingStation?.bootNotificationResponse?.status ?? 'Ø';
}
// function showTagModal(): void {
// state.isTagModalVisible = true;
<th scope="col" class="cs-table__transaction-col">Transaction</th>
<th scope="col" class="cs-table__name-col">Name</th>
<th scope="col" class="cs-table__stopped-col">Stopped</th>
+ <th scope="col" class="cs-table__registration-status-col">Registration Status</th>
<th scope="col" class="cs-table__vendor-col">Vendor</th>
<th scope="col" class="cs-table__model-col">Model</th>
<th scope="col" class="cs-table__firmware-col">Firmware Version</th>
.cs-table__transaction-col,
.cs-table__name-col,
.cs-table__stopped-col,
+.cs-table__registration-status-col,
.cs-table__model-col,
.cs-table__vendor-col,
.cs-table__firmware-col {
.cs-table__stopped-col {
/* min-width: 120px; */
}
+.cs-table__registration-status-col {
+ /* min-width: 120px; */
+}
.cs-table__model-col {
/* min-width: 120px; */
}