diff options
author | Anton Tananaev <anton@traccar.org> | 2022-06-23 07:22:59 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-06-23 07:22:59 -0700 |
commit | a2806bf6db5bae5546b62b0034a4ec877632935f (patch) | |
tree | 3d7d4f3862b3fa87fba56c072e70891e0c2ed580 /modern/src/other | |
parent | c591835bd91d5ae0c93471a246fa92d7c327464d (diff) | |
download | trackermap-web-a2806bf6db5bae5546b62b0034a4ec877632935f.tar.gz trackermap-web-a2806bf6db5bae5546b62b0034a4ec877632935f.tar.bz2 trackermap-web-a2806bf6db5bae5546b62b0034a4ec877632935f.zip |
Fix button list items
Diffstat (limited to 'modern/src/other')
-rw-r--r-- | modern/src/other/GeofencesList.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/other/GeofencesList.js b/modern/src/other/GeofencesList.js index 88db0654..5463d73a 100644 --- a/modern/src/other/GeofencesList.js +++ b/modern/src/other/GeofencesList.js @@ -40,7 +40,7 @@ const GeofencesList = () => { <List className={classes.list}> {Object.values(items).map((item, index, list) => ( <Fragment key={item.id}> - <ListItemButton button key={item.id} onClick={() => dispatch(devicesActions.select(item.id))}> + <ListItemButton key={item.id} onClick={() => dispatch(devicesActions.select(item.id))}> <ListItemText primary={item.name} /> <CollectionActions itemId={item.id} editPath="/settings/geofence" endpoint="geofences" setTimestamp={refreshGeofences} /> </ListItemButton> |