Browse Source

Minute adjustment

satof3 6 months ago
parent
commit
1afab26ca9

+ 1 - 0
apps/app/src/client/components/PageEditor/PageEditor.tsx

@@ -335,6 +335,7 @@ export const PageEditorSubstance = (props: Props): JSX.Element => {
     }
   }, [editorMode, setReservedNextCaretLine]);
 
+
   // TODO: Check the reproduction conditions that made this code necessary and confirm reproduction
   // // when transitioning to a different page, if the initialValue is the same,
   // // UnControlled CodeMirror value does not reset, so explicitly set the value to initialValue

+ 1 - 0
apps/app/src/client/components/PageEditor/Preview.tsx

@@ -37,6 +37,7 @@ const Preview = (props: Props): JSX.Element => {
 
   const fluidLayoutClass = expandContentWidth ? 'fluid-layout' : '';
 
+
   return (
     <div
       data-testid="page-editor-preview-body"

+ 1 - 0
packages/editor/src/client/components-internal/CodeMirrorEditor/Toolbar/EditorGuideButton.tsx

@@ -14,6 +14,7 @@ export const EditorGuideButton = (): JSX.Element => {
       type="button"
       className="btn btn-toolbar-button d-none d-lg-block"
       onClick={onClickEditorGuideButton}
+      aria-label="Open Editor Guide"
     >
       <span className="growi-custom-icons fs-6">editor_guide</span>
     </button>