Bugfixes on at-mentions and use images on emoji keyboard

polling-api
Noah 2023-09-08 20:43:17 -07:00
parent f091747380
commit 25bbe84a61
3 changed files with 5 additions and 2 deletions

View File

@ -20,7 +20,7 @@
} }
.has-background-at-mention { .has-background-at-mention {
background-color: rgb(50, 50, 0); background-color: rgb(50, 50, 0) !important;
} }
.tag.is-success { .tag.is-success {

View File

@ -530,10 +530,12 @@ export default {
{ {
value: "all", value: "all",
label: "All people in the current room", label: "All people in the current room",
searchText: "all people in the current room"
}, },
{ {
value: "here", value: "here",
label: "Everybody here in the current room", label: "Everybody here in the current room",
searchText: "all people in the current room"
}, },
]; ];
for (let user of this.whoList) { for (let user of this.whoList) {
@ -541,6 +543,7 @@ export default {
result.push({ result.push({
value: user.username, value: user.username,
label: user.nickname, label: user.nickname,
searchText: user.username + " " + user.nickname,
}); });
} }
return result; return result;

View File

@ -270,7 +270,7 @@ export default {
<div class="dropdown-content p-0"> <div class="dropdown-content p-0">
<!-- Emoji reactions menu --> <!-- Emoji reactions menu -->
<EmojiPicker <EmojiPicker
:native="true" :native="false"
:display-recent="true" :display-recent="true"
:disable-skin-tones="true" :disable-skin-tones="true"
theme="auto" theme="auto"