Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CKEditorError: Permission denied to access property Symbol.toStringTag Read more: https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/error-codes.html#error-Permission denied to access property Symbol.toStringTag #10631

Closed
Nazeh-Taha opened this issue Oct 3, 2021 · 1 comment
Labels
resolution:duplicate This issue is a duplicate of another issue and was merged into it. type:bug This issue reports a buggy (incorrect) behavior.

Comments

@Nazeh-Taha
Copy link

📝 Provide detailed reproduction steps (if any)

1.Code:

import { CKEditor } from '@ckeditor/ckeditor5-react';
import ClassicEditor from '@ckeditor/ckeditor5-build-classic';

/**
 * 
 * @param {{
 * textContent: string,
 * classes: boolean, 
 * handleEditorChange: Function, 
 * }} param0 
 */
export default function TextEditor({
    textContent = '',
    handleEditorChange,
    classes = {}
}) {
    
    return (
        <div className={classes}>
            <CKEditor className={classes}
                editor={ClassicEditor}
                data={textContent}
                onChange={handleEditorChange} />
        </div>
    );
};
  1. Scenario:
    The error happened when I press around the editor component and the error show just inside the console without effect in the UI.

  2. Error message:

Uncaught CKEditorError: Permission denied to access property Symbol.toStringTag
Read more: https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/error-codes.html#error-Permission denied to access property Symbol.toStringTag

📃 Other details

  • Browser: Firefox Developer Edition
  • OS: Windows 10
  • First affected CKEditor version: "@ckeditor/ckeditor5-build-classic": "^23.1.0",
    "@ckeditor/ckeditor5-react": "^3.0.0",
  • Installed CKEditor plugins: …

@Nazeh-Taha Nazeh-Taha added the type:bug This issue reports a buggy (incorrect) behavior. label Oct 3, 2021
@FilipTokarski
Copy link
Member

Hi, thanks for the report. This issue is known and we are already tracking it here.

I'll close this as a duplicate.

@FilipTokarski FilipTokarski added the resolution:duplicate This issue is a duplicate of another issue and was merged into it. label Oct 4, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
resolution:duplicate This issue is a duplicate of another issue and was merged into it. type:bug This issue reports a buggy (incorrect) behavior.
Projects
None yet
Development

No branches or pull requests

2 participants