Skip to content

Commit 6370b38

Browse files
committed
change icon for system defined services
1 parent 5128c71 commit 6370b38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/services/ServiceList.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import React from 'react';
66
import PropTypes from 'prop-types';
77

88
import { List, ListItem, ListItemIcon, ListItemText, ListSubheader } from '@material-ui/core';
9-
import { Shop } from '@material-ui/icons'
9+
import { Shop, Work } from '@material-ui/icons'
1010

1111
const ServiceList = (props) => {
1212
let { services, onItemClick } = props;
@@ -35,7 +35,7 @@ const ServiceList = (props) => {
3535
{systemDefined.map(s =>
3636
<ListItem key={s.id}>
3737
<ListItemIcon>
38-
<Shop/>
38+
<Work/>
3939
</ListItemIcon>
4040
<ListItemText
4141
primary={s.name}

0 commit comments

Comments
 (0)