+ client: add prefix to the service icons

This commit is contained in:
Ildar Kamalov
2019-08-05 11:42:39 +03:00
committed by Simon Zolin
parent 92cebd5b31
commit 0c46a70d9a
4 changed files with 18 additions and 18 deletions

View File

@@ -141,7 +141,7 @@ class ClientsTable extends Component {
<div className="logs__row logs__row--icons">
{value && value.length > 0 ? value.map(service => (
<svg className="service__icon service__icon--table" title={service} key={service}>
<use xlinkHref={`#${service}`} />
<use xlinkHref={`#service_${service}`} />
</svg>
)) : ''}
</div>