fixes for reactions
This commit is contained in:
parent
6d47156288
commit
190f29c869
3 changed files with 3 additions and 3 deletions
|
@ -79,7 +79,7 @@ class Message {
|
||||||
}
|
}
|
||||||
let reactiontxt;
|
let reactiontxt;
|
||||||
if (emoji instanceof Emoji) {
|
if (emoji instanceof Emoji) {
|
||||||
reactiontxt = emoji.id;
|
reactiontxt = `${emoji.name}:${emoji.id}`;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
reactiontxt = encodeURIComponent(emoji);
|
reactiontxt = encodeURIComponent(emoji);
|
||||||
|
|
|
@ -87,7 +87,7 @@ class Message{
|
||||||
}
|
}
|
||||||
let reactiontxt:string;
|
let reactiontxt:string;
|
||||||
if(emoji instanceof Emoji){
|
if(emoji instanceof Emoji){
|
||||||
reactiontxt=emoji.id;
|
reactiontxt=`${emoji.name}:${emoji.id}`;
|
||||||
}else{
|
}else{
|
||||||
reactiontxt=encodeURIComponent(emoji);
|
reactiontxt=encodeURIComponent(emoji);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1747,5 +1747,5 @@ form div{
|
||||||
flex-grow:0;
|
flex-grow:0;
|
||||||
}
|
}
|
||||||
.reactiondiv{
|
.reactiondiv{
|
||||||
margin-left: .4in;
|
margin-left: .45in;
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue