Adds inventory sources notifications list

This commit is contained in:
Alex Corey
2020-06-01 12:07:30 -04:00
parent fb8b90254c
commit 68a8dda869
8 changed files with 196 additions and 27 deletions

View File

@@ -19,6 +19,9 @@ const DataListAction = styled(_DataListAction)`
grid-gap: 16px;
grid-template-columns: repeat(3, max-content);
`;
const Label = styled.b`
margin-right: 20px;
`;
function NotificationListItem(props) {
const {
@@ -54,6 +57,7 @@ function NotificationListItem(props) {
</Link>
</DataListCell>,
<DataListCell key="type">
<Label>{i18n._(t`Type `)}</Label>
{typeLabels[notification.notification_type]}
</DataListCell>,
]}