mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-18 00:09:34 +02:00
...
This commit is contained in:
parent
e48a0fcabc
commit
87b95986c3
2 changed files with 4 additions and 2 deletions
|
@ -190,6 +190,8 @@
|
||||||
"resourceLearnRaw": "Learn how to configure TCP/UDP resources",
|
"resourceLearnRaw": "Learn how to configure TCP/UDP resources",
|
||||||
"resourceBack": "Back to Resources",
|
"resourceBack": "Back to Resources",
|
||||||
"resourceGoTo": "Go to Resource",
|
"resourceGoTo": "Go to Resource",
|
||||||
|
"resourceDelete": "Delete Resource",
|
||||||
|
"resourceDeleteConfirm": "Confirm Delete Resource",
|
||||||
"visibility": "Visibility",
|
"visibility": "Visibility",
|
||||||
"enabled": "Enabled",
|
"enabled": "Enabled",
|
||||||
"disabled": "Disabled",
|
"disabled": "Disabled",
|
||||||
|
|
|
@ -303,10 +303,10 @@ export default function SitesTable({ resources, orgId }: ResourcesTableProps) {
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
buttonText="Confirm Delete Resource"
|
buttonText={t('resourceDeleteConfirm')}
|
||||||
onConfirm={async () => deleteResource(selectedResource!.id)}
|
onConfirm={async () => deleteResource(selectedResource!.id)}
|
||||||
string={selectedResource.name}
|
string={selectedResource.name}
|
||||||
title="Delete Resource"
|
title={t('resourceDelete')}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue