Adding 'source' to register types

This commit is contained in:
2025-10-10 13:00:04 +01:00
parent 4fb1cb1f8c
commit cb3b9abaaa
2 changed files with 9 additions and 1 deletions

View File

@@ -54,6 +54,11 @@ export default function RegisterDetail({
)}
</Card.Body>
</Card>
<code>
{register.source.map((line, index) => (
<span key={index}>{line}<br /></span>
))}
</code>
</Col>
);
}