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}