diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ce8d11d..7c22c62b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ English | [简体中文](./CHANGELOG_CN.md) - `Feat(Netwrk)` Add new option `network.ignoreUrlRegExp` to skip some requests. (PR #623) - `Fix(Core)` Fix prototype pollution in `vConsole.setOption()`. (issue #616 #621) - `Fix(Log)` Reset group state when `console.clear()` is called. (issue #611) +- `Fix(Log)` Fix fatal error caused by iOS (less than 13.4) which is not support `ResizeObserver` interface. (issue #610) - `Fix(Network)` Fix possible "Cannot read property" error by `sendBeacon`. (issue #615) diff --git a/CHANGELOG_CN.md b/CHANGELOG_CN.md index 6f5974fe..b820d1c2 100644 --- a/CHANGELOG_CN.md +++ b/CHANGELOG_CN.md @@ -5,6 +5,7 @@ - `Feat(Netwrk)` 新增配置项 `network.ignoreUrlRegExp` 以跳过一些请求。 (PR #623) - `Fix(Core)` 修复 `vConsole.setOption()` 中可能存在的原型污染问题。 (issue #616 #621) - `Fix(Log)` 修复调用 `console.clear()` 时没有重置 group 层级的问题。 (issue #611) +- `Fix(Log)` 修复因 iOS(小于 13.4)不支持 `ResizeObserver` 接口导致的致命错误 (issue #610) - `Fix(Network)` 修复可能由 `sendBeacon` 引发的 "Cannot read property" 错误。 (issue #615) diff --git a/src/component/recycleScroller/recycleItem.svelte b/src/component/recycleScroller/recycleItem.svelte index 5dd718bb..3b284ecc 100644 --- a/src/component/recycleScroller/recycleItem.svelte +++ b/src/component/recycleScroller/recycleItem.svelte @@ -1,5 +1,6 @@