소스 검색

Merge pull request #15591 from sumaiya2908/html-editor-fixes

fix: html mode for ace editor
version-14
mergify[bot] 3 년 전
committed by GitHub
부모
커밋
a54bf39ec3
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      frappe/public/js/frappe/form/controls/markdown_editor.js

+ 3
- 1
frappe/public/js/frappe/form/controls/markdown_editor.js 파일 보기

@@ -32,7 +32,9 @@ frappe.ui.form.ControlMarkdownEditor = class ControlMarkdownEditor extends frapp
}

set_language() {
this.df.options = 'Markdown';
if (!this.df.options) {
this.df.options = 'Markdown';
}
super.set_language();
}



불러오는 중...
취소
저장