Skip to content

Commit

Permalink
Merge pull request #50 from dalipkumar703/message-copy-paste-bug
Browse files Browse the repository at this point in the history
fix(composer): message copy paste format bug
  • Loading branch information
holsted authored Jul 15, 2020
2 parents e7c3386 + 7e28440 commit b717937
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/components/ComposerQuill/composer.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,20 @@ class Composer extends React.Component {
container: '#toolbar',
},
},
formats: ['mention'],
formats: [
// add format to enable during copy and paste
'mention',
'bold',
'list',
'italic',
'size',
'strike',
'underline',
'blockquote',
'indent',
'header',
'direction',
],
placeholder,
});

Expand Down

0 comments on commit b717937

Please sign in to comment.