Fix error if the preview iframe does not have the userbar loaded

pull/12295/head
Sage Abdullah 2024-07-23 16:14:31 +01:00 zatwierdzone przez LB (Ben Johnston)
rodzic 014ffb5ce9
commit 7b67723da9
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -34,7 +34,7 @@ export const wagtailPreviewPlugin: AxePlugin = {
// Inside the preview frame, only call the expected plugin instance method.
// eslint-disable-next-line no-underscore-dangle
const pluginInstance = this._registry[id];
pluginInstance[action].call(pluginInstance, options, callback);
pluginInstance?.[action].call(pluginInstance, options, callback);
}
},
commands: [