From 47e04036a31dcb2add7c1bf3ad98f372a3954292 Mon Sep 17 00:00:00 2001 From: Vukile Langa <vukilelanga@me.com> Date: Thu, 10 Oct 2024 18:46:48 +0200 Subject: [PATCH] refactor(editors): sort hhmi config options alphabetically --- editors/demo/src/HHMI/HHMI.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/editors/demo/src/HHMI/HHMI.js b/editors/demo/src/HHMI/HHMI.js index d0c78713f..60c9103f0 100644 --- a/editors/demo/src/HHMI/HHMI.js +++ b/editors/demo/src/HHMI/HHMI.js @@ -162,15 +162,15 @@ const Hhmi = () => { </SubmitButton> </ButtonContainer> <Wax - config={config} autoFocus - ref={editorRef} + config={config} customValues={{ showFeedBack: submitted, testMode }} fileUpload={file => renderImage(file)} - value={content} + layout={HhmiLayout} // targetFormat="JSON" readonly={readOnly} - layout={HhmiLayout} + ref={editorRef} + value={content} // onChange={source => console.log(source)} /> </> -- GitLab