aboutsummaryrefslogtreecommitdiff
path: root/src/components/tables/item-table.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/tables/item-table.js')
-rw-r--r--src/components/tables/item-table.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/tables/item-table.js b/src/components/tables/item-table.js
index 208fd9c..5a405a5 100644
--- a/src/components/tables/item-table.js
+++ b/src/components/tables/item-table.js
@@ -56,7 +56,7 @@ const ItemTable = (props) => {
</tr>
</thead>
<tbody>
- {props.items && props.items.map((i, id=id+1) => (
+ {props.items && props.items.map((i, id) => (
<tr key={id}>
<td>{id+1}</td>
<td className={i.Name === "" ? "empty" : ""}>{i.Name}</td>