aboutsummaryrefslogtreecommitdiff
path: root/src/main/DeviceRow.jsx
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2024-04-20 13:35:22 -0600
committerIván Ávalos <avalos@disroot.org>2024-04-20 13:35:22 -0600
commit1c257cc26f38258d7aa0404cbc4aee9a83813e09 (patch)
tree6c140aadca56604e2a16b2645ace011b2e79d762 /src/main/DeviceRow.jsx
parent6293760f15d46eadc4d6ea444f2426a8ff66f09a (diff)
downloadtrackermap-web-1c257cc26f38258d7aa0404cbc4aee9a83813e09.tar.gz
trackermap-web-1c257cc26f38258d7aa0404cbc4aee9a83813e09.tar.bz2
trackermap-web-1c257cc26f38258d7aa0404cbc4aee9a83813e09.zip
Do not tint device icons
Diffstat (limited to 'src/main/DeviceRow.jsx')
-rw-r--r--src/main/DeviceRow.jsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/DeviceRow.jsx b/src/main/DeviceRow.jsx
index 8399da22..2eb3d6cd 100644
--- a/src/main/DeviceRow.jsx
+++ b/src/main/DeviceRow.jsx
@@ -133,7 +133,8 @@ const DeviceRow = ({ data, index, style }) => {
>
<ListItemAvatar>
<Avatar>
- <img className={classes.icon} src={mapIcons[mapIconKey(item.category)]} alt="" />
+ {/* RATIONALE: png icons (which we use sometimes) are not to be tinted! */}
+ <img src={mapIcons[mapIconKey(item.category)]} alt="" />
</Avatar>
</ListItemAvatar>
<ListItemText