Skip to content

Commit

Permalink
Merge pull request #12041 from ckeditor/ck/12040
Browse files Browse the repository at this point in the history
Fix (ckbox): Replaced the `CloudServicesCore` requirement in favor of the `CloudServices` plugin for CKBox. Closes #12040.
  • Loading branch information
pomek authored Jul 13, 2022
2 parents 9c53992 + 338b1a5 commit b3b2d79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ckeditor5-ckbox/src/ckboxediting.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default class CKBoxEditing extends Plugin {
* @inheritDoc
*/
static get requires() {
return [ 'CloudServicesCore', 'LinkEditing', 'PictureEditing', CKBoxUploadAdapter ];
return [ 'CloudServices', 'LinkEditing', 'PictureEditing', CKBoxUploadAdapter ];
}

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-ckbox/tests/ckboxediting.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ describe( 'CKBoxEditing', () => {
} );

it( 'should load link and picture features', () => {
expect( CKBoxEditing.requires ).to.deep.equal( [ 'CloudServicesCore', 'LinkEditing', 'PictureEditing', CKBoxUploadAdapter ] );
expect( CKBoxEditing.requires ).to.deep.equal( [ 'CloudServices', 'LinkEditing', 'PictureEditing', CKBoxUploadAdapter ] );
} );

it( 'should register the "ckbox" command if CKBox lib is loaded', () => {
Expand Down

0 comments on commit b3b2d79

Please sign in to comment.