remove provider setting from collab extension

This commit is contained in:
Hans Pagel 2020-11-16 17:18:07 +01:00
parent 4411fcfcf9
commit 1ed6db24c2
2 changed files with 0 additions and 3 deletions

View File

@ -136,7 +136,6 @@ export default {
extensions: [
...defaultExtensions(),
Collaboration.configure({
provider: this.provider,
type: this.type,
}),
CollaborationCursor.configure({

View File

@ -4,13 +4,11 @@ import {
} from 'y-prosemirror'
export interface CollaborationOptions {
provider: any,
type: any,
}
const Collaboration = Extension.create({
defaultOptions: <CollaborationOptions>{
provider: null,
type: null,
},