Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
EmojiPicker: use material icon instead of emoji
Co-authored-by: Joas Schilling <[email protected]>
Signed-off-by: Simon Spannagel <[email protected]>
  • Loading branch information
Simon Spannagel and nickvergessen committed Aug 5, 2020
commit 35f7d8f4945fcdc4abfb98d3dd44260faa86e7c3
5 changes: 4 additions & 1 deletion src/components/NewMessageForm/NewMessageForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
class="new-message-form__icon new-message-form__button"
:aria-label="t('spreed', 'Add emoji')"
:aria-haspopup="true">
🙂
<EmoticonOutline
:size="20" />
</button>
</EmojiPicker>
</div>
Expand Down Expand Up @@ -101,6 +102,7 @@ import { shareFile } from '../../services/filesSharingServices'
import { processFiles } from '../../utils/fileUpload'
import { CONVERSATION } from '../../constants'
import createTemporaryMessage from '../../utils/temporaryMessage'
import EmoticonOutline from 'vue-material-design-icons/EmoticonOutline'

const picker = getFilePickerBuilder(t('spreed', 'File to share'))
.setMultiSelect(false)
Expand All @@ -117,6 +119,7 @@ export default {
Actions,
ActionButton,
EmojiPicker,
EmoticonOutline,
},
data: function() {
return {
Expand Down