- 🇩🇪Germany Anybody Porta Westfalica
Has already been fixed in a duplicate issue. Thanks!
I had this javascript error on a page where entity browser is used (as a dialog) :
Uncaught TypeError: Cannot read property 'options' of undefined
at HTMLDivElement.<anonymous> (entity_browser.modal.js?v=8.9.2:95)
at Function.each (jquery.min.js?v=3.5.1:2)
at S.fn.init.each (jquery.min.js?v=3.5.1:2)
at Object.Drupal.entityBrowserModal.fluidDialog (entity_browser.modal.js?v=8.9.2:91)
at entity_browser.modal.js?v=8.9.2:62
at dispatch (jquery.min.js?v=3.5.1:2)
at v.handle (jquery.min.js?v=3.5.1:2)
I'm not sure how but I'm trying to check
Add a check to dialog variable "js/entity_browser.modal.js" on line 95 (function "Drupal.entityBrowserModal.fluidDialog"):
Replace this code :
if (dialog.options.fluid) {
by :
if (typeof dialog !== 'undefined' && dialog.options.fluid) {
Closed: duplicate
2.2
Miscellaneous
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Has already been fixed in a duplicate issue. Thanks!