Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/components/pages/Post/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -549,8 +549,7 @@ const Post = (props) => {
}),
)
} else {
alert(`You can only upload 4 images per buzz \n\n Please only upload remaining ${remainingImageUploads <= 1 ? `${remainingImageUploads} image` : `${remainingImageUploads} images`}`)
}
alert(`You can only upload 20 images per post \n\n Please only upload remaining ${remainingImageUploads <= 1 ? `${remainingImageUploads} image` : `${remainingImageUploads} images`}`) }
})

}
Expand Down Expand Up @@ -620,7 +619,7 @@ const Post = (props) => {
</div>
)}
</div>
<textarea
<textarea
onInput={e => {
updateContent(e)
}}
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const config = {
APP_NAME: 'D.Buzz',
APP_DESCRIPTION: 'Micro-blogging social media Dapp on the HIVE blockchain.',
APP_ICON: 'https://images.hive.blog/p/D5zH9SyxCKdAD9rYwjD1VDFVfes4J8WBmiaYPdeZndqBcsWCe3xdjZ9FWukYQcKxKMUaJu2FLm66h23z4KvAS7BxXaBpNLPzMVDqas4kKbBvZPf2zny6g2ePMPCmbC44pcvGUN?width=128&height=128',
MAX_IMAGE_UPLOADS :process.env.REACT_APP_VERSION || 20,
MAX_IMAGE_UPLOADS :process.env.REACT_APP_MAX_IMAGE_UPLOAD || 20,
}

export default config