Skip to content

Commit

Permalink
Restore text editor
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Jan 14, 2025
1 parent 9e16a71 commit 77938af
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions client/src/components/Markdown/MarkdownEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@
</div>
</div>
<div class="unified-panel-body d-flex">
<code-editor :content="content" />
<textarea
id="workflow-report-editor"
ref="text-area"
v-model="content"
class="markdown-textarea"
@input="onUpdate" />
</div>
</div>
</div>
Expand All @@ -41,7 +46,6 @@ import FlexPanel from "components/Panels/FlexPanel";
import _ from "underscore";
import Vue from "vue";
import CodeEditor from "./Editor/CodeEditor";
import MarkdownHelpModal from "./MarkdownHelpModal";
import MarkdownToolBox from "./MarkdownToolBox";
Expand All @@ -53,7 +57,6 @@ const FENCE = "```";
export default {
components: {
CodeEditor,
FlexPanel,
FontAwesomeIcon,
MarkdownHelpModal,
Expand Down

0 comments on commit 77938af

Please sign in to comment.