Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/BMDashboard/ItemList/RecordsModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function Record({ record, recordType, setRecord }) {
}
};

if (recordType === 'Update') {
if (recordType === 'Update' || recordType === 'UsageRecord') {
return (
<>
<thead>
Expand Down Expand Up @@ -123,8 +123,8 @@ export function Record({ record, recordType, setRecord }) {
})
) : (
<tr>
<td colSpan={4} style={{ fontWeight: 'bold' }}>
There are no updates for this item.
<td colSpan={5} style={{ fontWeight: 'bold' }}>
There are no usage records for this item.
</td>
</tr>
)}
Expand Down
Loading