Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #1072

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "interop-dashboard-frontend",
"version": "1.0.82",
"version": "1.0.83",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ export const PartyGeneralInfoSection: React.FC = () => {
content={user?.subUnitType}
/>
)}
<InformationContainer
label={t('tenantIdField.label')}
content={user.id}
copyToClipboard={{
value: user.id,
tooltipTitle: t('tenantIdField.copySuccessFeedbackText'),
}}
/>
</Stack>
</SectionContainer>
</Grid>
Expand Down
4 changes: 4 additions & 0 deletions src/static/locales/en/party.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
},
"subUnitTypeField": {
"label": "Organization type"
},
"tenantIdField": {
"label": "Tenant ID",
"copySuccessFeedbackText": "Id copied successfully"
}
},
"contacts": {
Expand Down
4 changes: 4 additions & 0 deletions src/static/locales/it/party.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
},
"subUnitTypeField": {
"label": "Tipologia di ente"
},
"tenantIdField": {
"label": "ID ente",
"copySuccessFeedbackText": "Id copiato correttamente"
}
},
"contacts": {
Expand Down
Loading