Improved tagging on actions

This commit is contained in:
frikky
2020-09-02 13:39:37 +02:00
parent ab7436b527
commit c58da95dbd
7 changed files with 65 additions and 24 deletions
+6 -2
View File
@@ -523,10 +523,14 @@ const Workflows = (props) => {
</span>
</Tooltip>
{data.tags !== undefined ?
data.tags.map(tag => {
data.tags.map((tag, index) => {
if (index >= 3) {
return null
}
return (
<Chip
style={{marginRight: 5, marginTop: 2, cursor: "pointer",}}
style={{height: 25, marginRight: 5, marginTop: 2, cursor: "pointer",}}
label={tag}
color="primary"
/>