Fix HTML editor not displaying properly when expanding field (#2792)
This commit is contained in:
parent
feaaaa230a
commit
01d5a9a3d2
@ -736,6 +736,7 @@ the AddCards dialog) should be implemented in the user of this component.
|
||||
>
|
||||
<PlainTextInput
|
||||
{hidden}
|
||||
fieldCollapsed={fieldsCollapsed[index]}
|
||||
on:focusout={() => {
|
||||
saveFieldNow();
|
||||
$focusedInput = null;
|
||||
|
@ -43,6 +43,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||
import { storedToUndecorated, undecoratedToStored } from "./transform";
|
||||
|
||||
export let hidden = false;
|
||||
export let fieldCollapsed = false;
|
||||
export const focusFlag = new Flag();
|
||||
|
||||
$: configuration = {
|
||||
@ -116,7 +117,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||
}
|
||||
|
||||
$: {
|
||||
pushUpdate(!hidden);
|
||||
pushUpdate(!(hidden || fieldCollapsed));
|
||||
tick().then(() => {
|
||||
refresh();
|
||||
if (focusFlag.checkAndReset()) {
|
||||
|
Loading…
Reference in New Issue
Block a user