Skip to content

Commit f0d4772

Browse files
committed
chore: fix prettier warnings
Signed-off-by: Jonas <jonas@freesources.org>
1 parent 33a17db commit f0d4772

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/editor.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,8 @@ window.OCA.Text.createEditor = async function ({
207207
openLinkHandler = undefined,
208208
onSearch = undefined,
209209
}) {
210-
const { default: MarkdownContentEditor } = await import(
211-
'./components/Editor/MarkdownContentEditor.vue'
212-
)
210+
const { default: MarkdownContentEditor } =
211+
await import('./components/Editor/MarkdownContentEditor.vue')
213212
const { default: Editor } = await import('./components/Editor.vue')
214213

215214
const data = Vue.observable({
@@ -305,9 +304,8 @@ window.OCA.Text.createTable = async function ({
305304
onLoaded = () => {},
306305
onUpdate = ({ markdown }) => {},
307306
}) {
308-
const { default: PlainTableContentEditor } = await import(
309-
'./components/Editor/PlainTableContentEditor.vue'
310-
)
307+
const { default: PlainTableContentEditor } =
308+
await import('./components/Editor/PlainTableContentEditor.vue')
311309

312310
const data = Vue.observable({
313311
readOnly,

0 commit comments

Comments
 (0)