diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-06-18 22:51:48 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-06-18 22:51:48 -0400 |
| commit | 8c94bb92b23dea138fa752929b6134e7214dfb60 (patch) | |
| tree | 68ea1ec9cc7563516024b29cad269f8807966e26 /src/client/views/nodes/ImageBox.tsx | |
| parent | 3b880d7b15b7107049ae27601b9f759b17f7fde9 (diff) | |
| parent | 13e301dea2f537b67b338cc6a98d3f3b5a8e1f36 (diff) | |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/views/nodes/ImageBox.tsx')
| -rw-r--r-- | src/client/views/nodes/ImageBox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/ImageBox.tsx b/src/client/views/nodes/ImageBox.tsx index 345fa5cc7..f56a2d926 100644 --- a/src/client/views/nodes/ImageBox.tsx +++ b/src/client/views/nodes/ImageBox.tsx @@ -188,8 +188,9 @@ export class ImageBox extends DocComponent<FieldViewProps, ImageDocument>(ImageD } @action onError = () => { let timeout = this._curSuffix === "_s" ? this._smallRetryCount : this._curSuffix === "_m" ? this._mediumRetryCount : this._largeRetryCount; - if (timeout < 10) + if (timeout < 10) { setTimeout(this.retryPath, Math.min(10000, timeout * 5)); + } } _curSuffix = "_m"; render() { |
