sxoinas12 5 년 전
부모
커밋
18b118e679
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      modules/Image.js

+ 3 - 3
modules/Image.js

@@ -16,9 +16,9 @@ export default class ImageComp extends Module {
 			resizeMode,
 			source
 		} = this.props;
-		if(!width) width = ImageComp.Inputs.width.default || 100;
-		if(!height) height = ImageComp.Inputs.height.default || 100;
-		if(!resizeMode) resizeMode = ImageComp.Inputs.resizeMode.default || 'cover';
+		if(!width) width = 100;
+		if(!height) height = 100;
+		if(!resizeMode) resizeMode = 'cover';
 		return 	<Image
 			          style={{width, height}}
 			          resizeMode={resizeMode}