feat(web): add tooltip for charge point status with online/offline indication
This commit is contained in:
@@ -265,7 +265,7 @@ export default function ChargePage() {
|
||||
});
|
||||
|
||||
const selectedCp = chargePoints.find((cp) => cp.id === selectedCpId) ?? null;
|
||||
const myTags = idTags.filter((t) => t.status === "Accepted");
|
||||
const myTags = idTags?.filter((t) => t.status === "Accepted") ?? [];
|
||||
|
||||
const startMutation = useMutation({
|
||||
mutationFn: async () => {
|
||||
|
||||
Reference in New Issue
Block a user