Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

261
Views
Ckeeditor5 - "barra de herramientas de widget sin elementos" {toolbarId: 'mediaEmbed'}

Estoy usando Ckeditor5 con React y recibí esta advertencia en la consola cuando se procesa el componente, ¿cómo puedo deshacerme de esto?

Captura de pantalla de error

Esta es la referencia de error en el documento oficial.

https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/error-codes.html#error-widget-toolbar-no-items

Y este es mi componente

 export const EditorField = (props) => { const {name,method,placeholder,isSimplified} = props const link = { decorators: { toggleDownloadable: { mode: 'manual', label: 'Downloadable', attributes: { download: 'file' } }, openInNewTab: { mode: 'manual', label: 'Open in a new tab', defaultValue: true, attributes: { target: '_blank', rel: 'noopener noreferrer' } } } } const image = { toolbar: [ 'imageTextAlternative', 'imageStyle:inline', 'imageStyle:block', 'imageStyle:side', 'linkImage' ] } const table = { contentToolbar: [ 'tableColumn', 'tableRow', 'mergeTableCells', 'tableCellProperties', 'tableProperties' ] } const toolbar = isSimplified ? { items: [ 'bold','italic','underline','strikethrough','|', 'link','|', 'specialCharacters','|', 'undo','redo' ], shouldNotGroupWhenFull: true } : { items: [ 'heading','|', 'bold','italic','underline','strikethrough','|', 'fontColor','fontBackgroundColor','|', 'bulletedList','numberedList','|', 'link','imageUpload','insertTable','mediaEmbed','|', 'specialCharacters','blockQuote','horizontalLine','|', 'undo','redo' ], shouldNotGroupWhenFull: true } return ( <CKEditor config={ { toolbar, language: 'it', placeholder, link, image, table, } } editor={ Editor } data={request[name] || ''} onChange={ (event, editor) => { const data = editor.getData() dispatch(setValue({method,name,value:data})) } } /> ) }
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Finalmente logré arreglar esto agregando esto a mi configuración.

 removePlugins: ["MediaEmbedToolbar"],

Por el momento, este complemento no hace nada: https://github.com/ckeditor/ckeditor5/issues/9824

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!