Skip to content

Commit e8b78d1

Browse files
authored
Merge pull request #1838 from oasisprotocol/mz/label
Update RAK label
2 parents 4122224 + 09ed56d commit e8b78d1

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

.changelog/1838.trivial.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update RAK label

src/app/components/RuntimeEvents/RuntimeEventDetails.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,9 @@ const RuntimeEventDetailsInner: FC<{
403403
{event.body?.rak?.PublicKey && (
404404
<>
405405
<dt>{t('rofl.rak')}</dt>
406-
<dd>{event.body.rak.PublicKey}</dd>
406+
<dd>
407+
<Typography variant="mono">{event.body.rak.PublicKey}</Typography>
408+
</dd>
407409
</>
408410
)}
409411
</StyledDescriptionList>

src/app/pages/RoflAppDetailPage/InstancesList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type InstancesListProps = {
1515
export const InstancesList: FC<InstancesListProps> = ({ isLoading, limit, pagination, instances }) => {
1616
const { t } = useTranslation()
1717
const tableColumns: TableColProps[] = [
18-
{ key: 'rak', content: t('rofl.rak') },
18+
{ key: 'rak', content: t('rofl.rakAbbreviation') },
1919
{ key: 'node', content: t('rofl.nodeId') },
2020
{ key: 'expiration', content: t('rofl.expirationEpoch'), align: TableCellAlign.Right },
2121
]

src/locales/en/translation.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,8 @@
657657
"rofl": {
658658
"active": "Active",
659659
"inactive": "Inactive",
660-
"rak": "RAK",
660+
"rakAbbreviation": "RAK",
661+
"rak": "Runtime Attestation Key",
661662
"removed": "Removed",
662663
"lastActvity": "Last activity",
663664
"appId": "App ID",

0 commit comments

Comments
 (0)