Fix a mini sidebar bug when embedding admin-lte into iframe (#4799)

When embedding whole admin-lte page into a iframe, mini sidebar will display without content.
pull/4962/head
Alex Hua 2023-03-21 20:55:32 +08:00 committed by GitHub
parent 00525c1371
commit c7fe21050c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ class IFrame {
}
_initFrameElement() {
if (window.frameElement && this._config.autoIframeMode) {
if (window.frameElement && this._config?.autoIframeMode) {
const $body = $('body')
$body.addClass(CLASS_NAME_IFRAME_MODE)