Skip to content

Commit

Permalink
Added missing CloudServices plugin for CKBox.
Browse files Browse the repository at this point in the history
  • Loading branch information
psmyrek committed Jul 12, 2022
1 parent 9c53992 commit 338b1a5
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 338b1a5

Please sign in to comment.