diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mobile/ImageUpload.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mobile/ImageUpload.tsx b/src/mobile/ImageUpload.tsx index 935f5b5c1..ac46cb4fc 100644 --- a/src/mobile/ImageUpload.tsx +++ b/src/mobile/ImageUpload.tsx @@ -65,7 +65,7 @@ const onFileLoad = (file: any) => { ReactDOM.render(( <div className="imgupload_cont"> {/* <button className = "button_file" = {onPointerDown}> Open Image </button> */} - <input type="file" accept="image/*" capture="camera" onChange={onFileLoad} className="input_file" id="input_image_file"></input> + <input type="file" accept="image/*" onChange={onFileLoad} className="input_file" id="input_image_file"></input> <img id="img_preview" src=""></img> </div>), document.getElementById('root') |