Skip to content

Commit

Permalink
Fikser lasting av friteksteditor (#5106)
Browse files Browse the repository at this point in the history
  • Loading branch information
hallvardastark authored Oct 11, 2023
1 parent 928dd44 commit 5095c3a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const FritekstEditor = ({
};

useEffect(() => {
if (redigerbartInnholdKlart && !editor.harEditor() && !readOnly) {
if (redigerbartInnholdKlart && !readOnly) {
lastEditor();
}
}, [redigerbartInnholdKlart, readOnly]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,22 +188,24 @@ const FritekstRedigering = ({
</Modal.Header>
<Modal.Body>
<div className={styles.modalInnehold}>
<FritekstEditor
handleSubmit={handleLagre}
lukkEditor={lukkEditor}
handleForhåndsvis={handleForhåndsvis}
oppdaterFormFelt={oppdaterFormFelt}
setFieldValue={setFieldValue}
kanInkludereKalender={kanInkludereKalender}
skalBrukeOverstyrendeFritekstBrev={skalBrukeOverstyrendeFritekstBrev}
readOnly={readOnly}
redigerbartInnholdKlart={redigerbartInnholdKlart}
redigerbartInnhold={redigerbartInnhold}
originalHtml={originalHtml}
brevStiler={brevStiler}
prefiksInnhold={prefiksInnhold}
suffiksInnhold={suffiksInnhold}
/>
{visRedigering && (
<FritekstEditor
handleSubmit={handleLagre}
lukkEditor={lukkEditor}
handleForhåndsvis={handleForhåndsvis}
oppdaterFormFelt={oppdaterFormFelt}
setFieldValue={setFieldValue}
kanInkludereKalender={kanInkludereKalender}
skalBrukeOverstyrendeFritekstBrev={skalBrukeOverstyrendeFritekstBrev}
readOnly={readOnly}
redigerbartInnholdKlart={redigerbartInnholdKlart}
redigerbartInnhold={redigerbartInnhold}
originalHtml={originalHtml}
brevStiler={brevStiler}
prefiksInnhold={prefiksInnhold}
suffiksInnhold={suffiksInnhold}
/>
)}
</div>
</Modal.Body>
</Modal>
Expand Down

0 comments on commit 5095c3a

Please sign in to comment.