소스 검색

Inspector Hex Control

sebavan 4 년 전
부모
커밋
ac5beee0ed
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      inspector/src/components/actionTabs/lines/hexLineComponent.tsx

+ 1 - 1
inspector/src/components/actionTabs/lines/hexLineComponent.tsx

@@ -153,7 +153,7 @@ export class HexLineComponent extends React.Component<IHexLineComponentProps, {
             for (let i = 0; i < 8 - valueAsHex.length; i++) { //padding the '0's
                 hex0String += "0";
             }
-            valueAsHex = "0x" + valueAsHex.toUpperCase() + hex0String;
+            valueAsHex = "0x" + hex0String + valueAsHex.toUpperCase();
         }
         else
         {