Alternate image to be displayed if no image.

This commit is contained in:
amitk
2021-03-03 15:06:43 +05:30
parent 14a1d53bbb
commit de92b0f978
+3 -1
View File
@@ -2152,6 +2152,8 @@ const AppCreator = (props) => {
let croppedData = file.length > 0 ? file : fileBase64
const imageInfo = <img src={imageData} id="logo" style={{maxWidth: 174, maxHeight: 174, minWidth: 174, minHeight: 174, objectFit: "contain",}} />
const alternateImg = <AddPhotoAlternateIcon style={{ width: 100, height: 100, flex: "1", display: "flex", flexDirection: "row", margin: "auto" }}/>
const zoomIn = () => {
setScale(scale+0.1);
@@ -2273,7 +2275,7 @@ const AppCreator = (props) => {
<Tooltip title="Click to edit the app's image" placement="bottom">
<div style={{flex: "1", margin: 10, border: "1px solid #f85a3e", cursor: "pointer", backgroundColor: inputColor, maxWidth: 174, maxHeight: 174}} onClick={() => {setOpenImageModal(true)}}>
<input hidden type="file" ref={(ref) => upload = ref} onChange={editHeaderImage} />
<AddPhotoAlternateIcon style={{ width: 100, height: 100, flex: "1", display: "flex", flexDirection: "row", margin: "auto" }}/>
{!imageData && (alternateImg)}
{imageInfo}
</div>
</Tooltip>