mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-08 01:45:28 +00:00
fix(components): wrong calculation of dimensions of embeds layouts
This commit is contained in:
@@ -59,7 +59,7 @@ export default function Embed({ embed }: Props) {
|
|||||||
|
|
||||||
if (embed.type === "Text") {
|
if (embed.type === "Text") {
|
||||||
mw = MAX_EMBED_WIDTH;
|
mw = MAX_EMBED_WIDTH;
|
||||||
mh = 0;
|
mh = 1;
|
||||||
} else {
|
} else {
|
||||||
switch (embed.special?.type) {
|
switch (embed.special?.type) {
|
||||||
case "YouTube":
|
case "YouTube":
|
||||||
|
|||||||
@@ -582,8 +582,9 @@ export const MyBots = observer(() => {
|
|||||||
x.interactions_url =
|
x.interactions_url =
|
||||||
changes.interactions_url;
|
changes.interactions_url;
|
||||||
if (
|
if (
|
||||||
changes.remove ===
|
changes.remove?.includes(
|
||||||
["InteractionsURL"]
|
"InteractionsURL",
|
||||||
|
)
|
||||||
)
|
)
|
||||||
x.interactions_url = undefined;
|
x.interactions_url = undefined;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user