Skip to content

Commit 7a6164f

Browse files
committed
feat: add edition to instrument card
1 parent a9a8049 commit 7a6164f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

apps/web/src/features/instruments/components/InstrumentCard/InstrumentCard.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@ export const InstrumentCard = ({ instrument, onClick }: InstrumentCardProps) =>
4040
}),
4141
text: instrument.details.description
4242
},
43+
{
44+
kind: 'text',
45+
label: t({
46+
en: 'Edition',
47+
fr: 'Édition'
48+
}),
49+
text: instrument.internal?.edition.toString()
50+
},
4351
{
4452
kind: 'text',
4553
label: t({

0 commit comments

Comments
 (0)