Skip to content

Commit

Permalink
Correção
Browse files Browse the repository at this point in the history
  • Loading branch information
rtenorioh committed Oct 18, 2022
1 parent 75d64af commit ba92c2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/MessageInput/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@ const MessageInput = ({ ticketStatus }) => {
setTimeout(() => {
setOnDragEnter(false);
}, 10000);
// eslint-disable-next-line
}, [onDragEnter === true]);

const handleChangeInput = (e) => {
Expand Down Expand Up @@ -502,7 +503,6 @@ const MessageInput = ({ ticketStatus }) => {
<ListItemText
primary={`${value.name}`}
secondary={`${parseInt(value.size / 1024)} kB`}
// color="secondary"
/>
</ListItem>
);
Expand Down Expand Up @@ -544,7 +544,7 @@ const MessageInput = ({ ticketStatus }) => {
onDrop={(e) => handleInputDrop(e)}
>
<div className={ onDragEnter ? classes.dropInfo : classes.dropInfoOut}>
⬇️ {i18n.t("uploads.titles.titleUploadMsgDragDrop")} ⬇️
{i18n.t("uploads.titles.titleUploadMsgDragDrop")}
</div>
{replyingMessage && renderReplyingMessage(replyingMessage)}
<div className={classes.newMessageBox}>
Expand Down

0 comments on commit ba92c2f

Please sign in to comment.