mirror of
				https://github.com/Telecominfraproject/wlan-cloud-ucentralgw-ui.git
				synced 2025-10-31 10:47:55 +00:00 
			
		
		
		
	Compare commits
	
		
			5 Commits
		
	
	
		
			v4.0.0
			...
			display-ce
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | e09b3ee5f4 | ||
|   | 855960559d | ||
|   | 4cecfc6fc4 | ||
|   | e62d1e4a98 | ||
|   | 6dddba0848 | 
| @@ -1,6 +1,6 @@ | |||||||
| { | { | ||||||
|   "name": "ucentral-client", |   "name": "ucentral-client", | ||||||
|   "version": "4.0.0", |   "version": "4.1.0", | ||||||
|   "description": "", |   "description": "", | ||||||
|   "private": true, |   "private": true, | ||||||
|   "main": "index.tsx", |   "main": "index.tsx", | ||||||
|   | |||||||
| @@ -622,6 +622,7 @@ | |||||||
|     "all": "All", |     "all": "All", | ||||||
|     "associations": "Associations", |     "associations": "Associations", | ||||||
|     "certificate_expires_in": "Certificate Expiry", |     "certificate_expires_in": "Certificate Expiry", | ||||||
|  |     "certificate_issuer": "Certificate Issuer", | ||||||
|     "certificate_expiry": "Cert. Expires In", |     "certificate_expiry": "Cert. Expires In", | ||||||
|     "connected": "Connected", |     "connected": "Connected", | ||||||
|     "crash_logs": "Crash Logs", |     "crash_logs": "Crash Logs", | ||||||
|   | |||||||
| @@ -166,6 +166,7 @@ export type DeviceStatus = { | |||||||
|   connected: boolean; |   connected: boolean; | ||||||
|   connectReason?: string; |   connectReason?: string; | ||||||
|   certificateExpiryDate: number; |   certificateExpiryDate: number; | ||||||
|  |   certificateIssuerName?: string; | ||||||
|   connectionCompletionTime: number; |   connectionCompletionTime: number; | ||||||
|   firmware: string; |   firmware: string; | ||||||
|   ipAddress: string; |   ipAddress: string; | ||||||
|   | |||||||
| @@ -171,6 +171,12 @@ const DeviceSummary = ({ serialNumber }: Props) => { | |||||||
|                 '-' |                 '-' | ||||||
|               )} |               )} | ||||||
|             </GridItem> |             </GridItem> | ||||||
|  |             <GridItem colSpan={1} alignContent="center" alignItems="center"> | ||||||
|  |               <Heading size="sm">{t('devices.certificate_issuer')}:</Heading> | ||||||
|  |             </GridItem> | ||||||
|  |             <GridItem colSpan={1}> | ||||||
|  |               {getStatus.data?.certificateIssuerName ? getStatus.data.certificateIssuerName.split('CN=')[1] : '-'} | ||||||
|  |             </GridItem> | ||||||
|             <GridItem colSpan={1} alignContent="center" alignItems="center"> |             <GridItem colSpan={1} alignContent="center" alignItems="center"> | ||||||
|               <Heading size="sm">Connect Reason:</Heading> |               <Heading size="sm">Connect Reason:</Heading> | ||||||
|             </GridItem> |             </GridItem> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user