ソースを参照

fix baseUrl not assigned to source

iou90kant 5 年 前
コミット
8f04163451
共有1 個のファイルを変更した3 個の追加2 個の削除を含む
  1. 3
    2
      autoHeightWebView/utils.js

+ 3
- 2
autoHeightWebView/utils.js ファイルの表示

@@ -119,8 +119,9 @@ export const isSizeChanged = ({ height, previousHeight, width, previousWidth })
119 119
 export const reduceData = props => {
120 120
   const { source } = props;
121 121
   const script = getScript(props);
122
-  if (source.html) {
123
-    return { currentSource: { html: getInjectedSource({ html: source.html, script }) } };
122
+  const { html, baseUrl } = source;
123
+  if (html) {
124
+    return { currentSource: { baseUrl, html: getInjectedSource({ html, script }) } };
124 125
   } else {
125 126
     return {
126 127
       currentSource: source,