fix: removed unnecessary lines of code

This commit is contained in:
Jannat Patel
2023-05-11 12:40:43 +05:30
parent c3f3a110c0
commit 2162963926
7 changed files with 6 additions and 39 deletions

View File

@@ -1943,6 +1943,10 @@ li {
justify-content: flex-end !important;
}
.modal-footer .btn:first-child {
margin-right: 0.5rem;
}
.modal-header .modal-title {
color: var(--gray-900);
line-height: 1.5rem;

View File

@@ -1,19 +0,0 @@
import EditorJS from "@editorjs/editorjs";
import Header from "@editorjs/header";
import List from "@editorjs/list";
let self = this;
const create_editor_for_lesson_content = () => {
self.editor = new EditorJS({
holder: "lesson-content",
tools: {
header: {
class: Header,
},
list: List,
},
});
};
create_editor_for_lesson_content();
console.log(self.editor);