feat(scaffolder): tags as list

This commit is contained in:
Ivan Shmidt
2020-06-24 23:36:09 +02:00
parent 74b237d495
commit 1b15895bc2
3 changed files with 7 additions and 6 deletions
@@ -103,8 +103,7 @@ const ScaffolderPage: React.FC<{}> = () => {
}`}
type={template.spec.type ?? ''}
description={template.metadata.description ?? '-'}
// TODO(shmidt-i): how to store tags
tags={template.metadata.annotations?.tags.split(',') ?? []}
tags={template.metadata?.tags ?? []}
/>
</Grid>
);