Skip to content

Commit

Permalink
feat(typeId): use the same style as code hash
Browse files Browse the repository at this point in the history
  • Loading branch information
Daryl-L committed Oct 7, 2023
1 parent 3bb17ad commit e45ef3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Script/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const getScriptInfo = (scriptInfo: ScriptInfo) => {
},
{
title: i18n.t('scripts.type_id'),
content: <span className={styles.typeId}>{id || '-'}</span>,
content: id ? <CodeHashMessage codeHash={id} /> : '-',
},
{
title: i18n.t('scripts.code_hash'),
Expand Down

0 comments on commit e45ef3a

Please sign in to comment.