mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 09:25:15 +00:00 
			
		
		
		
	Compare commits
	
		
			2 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					06b67ed4bc | ||
| 
						 | 
					4a0e27572e | 
@@ -32,6 +32,7 @@
 | 
			
		||||
  "certificate.none.subtitle.for-http": "This host will not use HTTPS",
 | 
			
		||||
  "certificate.none.title": "None",
 | 
			
		||||
  "certificate.not-in-use": "Not Used",
 | 
			
		||||
  "certificate.renew": "Renew Certificate",
 | 
			
		||||
  "certificates": "Certificates",
 | 
			
		||||
  "certificates.custom": "Custom Certificate",
 | 
			
		||||
  "certificates.custom.warning": "Key files protected with a passphrase are not supported.",
 | 
			
		||||
 
 | 
			
		||||
@@ -98,6 +98,9 @@
 | 
			
		||||
	"certificate.not-in-use": {
 | 
			
		||||
		"defaultMessage": "Not Used"
 | 
			
		||||
	},
 | 
			
		||||
	"certificate.renew": {
 | 
			
		||||
		"defaultMessage": "Renew Certificate"
 | 
			
		||||
	},
 | 
			
		||||
	"certificates": {
 | 
			
		||||
		"defaultMessage": "Certificates"
 | 
			
		||||
	},
 | 
			
		||||
 
 | 
			
		||||
@@ -47,7 +47,7 @@ const RenewCertificateModal = EasyModal.create(({ id, visible, remove }: Props)
 | 
			
		||||
		<Modal show={visible} onHide={isSubmitting ? undefined : remove}>
 | 
			
		||||
			<Modal.Header closeButton={!isSubmitting}>
 | 
			
		||||
				<Modal.Title>
 | 
			
		||||
					<T id="renew-certificate" />
 | 
			
		||||
					<T id="certificate.renew" />
 | 
			
		||||
				</Modal.Title>
 | 
			
		||||
			</Modal.Header>
 | 
			
		||||
			<Modal.Body>
 | 
			
		||||
 
 | 
			
		||||
@@ -24,10 +24,6 @@ export default function Table({ data, isFetching, onSelectItem }: Props) {
 | 
			
		||||
					className: "w-1",
 | 
			
		||||
				},
 | 
			
		||||
			}),
 | 
			
		||||
			columnHelper.accessor((row: AuditLog) => row.user?.name, {
 | 
			
		||||
				id: "user.name",
 | 
			
		||||
				header: intl.formatMessage({ id: "column.name" }),
 | 
			
		||||
			}),
 | 
			
		||||
			columnHelper.accessor((row: AuditLog) => row, {
 | 
			
		||||
				id: "objectType",
 | 
			
		||||
				header: intl.formatMessage({ id: "column.event" }),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user