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 {
background-color: rgb(50, 50, 0);
background-color: rgb(50, 50, 0) !important;
}
.tag.is-success {

View File

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

View File

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