Merge pull request #6624 from Ocelot-Social-Community/fix-code-in-editor-component

fix(webapp): fix code in editor component
This commit is contained in:
Wolfgang Huß 2023-07-21 10:08:00 +02:00 committed by GitHub
commit a5578e4ff4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,10 +28,10 @@ import { replace, build } from 'xregexp/xregexp-all.js'
import * as key from '../../constants/keycodes'
import { HASHTAG, MENTION } from '../../constants/editor'
import defaultExtensions from './defaultExtensions.js'
import EventHandler from './plugins/eventHandler.js'
import Hashtag from './nodes/Hashtag.js'
import Mention from './nodes/Mention.js'
import defaultExtensions from './defaultExtensions'
import EventHandler from './plugins/eventHandler'
import Hashtag from './nodes/Hashtag'
import Mention from './nodes/Mention'
import MenuBar from './MenuBar'
import ContextMenu from './ContextMenu'
import SuggestionList from './SuggestionList'