Browse Source

Merge pull request #11044 from thingsboard/fix/snmp-authentication-protocol

Fix MD5 SNMP authentication protocol
pull/11056/head
Viacheslav Klimov 2 years ago
committed by GitHub
parent
commit
8e05dfd39a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      ui-ngx/src/app/shared/models/device.models.ts

2
ui-ngx/src/app/shared/models/device.models.ts

@ -655,7 +655,7 @@ export enum SnmpAuthenticationProtocol {
SHA_256 = 'SHA_256',
SHA_384 = 'SHA_384',
SHA_512 = 'SHA_512',
MD5 = 'MD%'
MD5 = 'MD5'
}
export const SnmpAuthenticationProtocolTranslationMap = new Map<SnmpAuthenticationProtocol, string>([

Loading…
Cancel
Save