Bugfixes on at-mentions and use images on emoji keyboard
This commit is contained in:
parent
f091747380
commit
25bbe84a61
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user