소스 검색

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.
Alex Hua 2 년 전
부모
커밋
c7fe21050c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      build/js/IFrame.js

+ 1 - 1
build/js/IFrame.js

@@ -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)