Browse Source
Removed brackets from hash from firmware update
gre-patch-1
Juan Cortés Ross
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/components/modals/UpdateFirmware/steps/01-step-install-full-firmware.js
|
|
@ -134,7 +134,7 @@ class StepFullFirmwareInstall extends PureComponent<Props, State> { |
|
|
|
} |
|
|
|
|
|
|
|
hash = hash.toUpperCase() |
|
|
|
return hash.length > 8 ? `[${hash.slice(0, 4)}...${hash.substr(-4)}]` : hash |
|
|
|
return hash.length > 8 ? `${hash.slice(0, 4)}...${hash.substr(-4)}` : hash |
|
|
|
} |
|
|
|
|
|
|
|
renderBody = () => { |
|
|
|