diff --git a/web/pages/construct/flow/index.tsx b/web/pages/construct/flow/index.tsx index c42d05d1c..dd24022e3 100644 --- a/web/pages/construct/flow/index.tsx +++ b/web/pages/construct/flow/index.tsx @@ -182,7 +182,7 @@ function Flow() { description={flow.description} name={flow.name} key={flow.uid} - logo='/pictures/flow.png' + logo={`${flow.define_type === 'python' ? '/pictures/libro.png' : '/pictures/flow.png'}`} onClick={() => { if (flow.define_type === 'json') { router.push('/construct/flow/canvas?id=' + flow.uid); @@ -223,6 +223,7 @@ function Flow() { Tags={
{flow.source} + {flow.define_type && {flow.define_type}} {flow.editable ? 'Editable' : 'Can not Edit'} {flow.state} diff --git a/web/public/pictures/libro.png b/web/public/pictures/libro.png new file mode 100644 index 000000000..cc6b2addf Binary files /dev/null and b/web/public/pictures/libro.png differ