Skip to content

Commit e1f7061

Browse files
Merge pull request #5222 from topcoder-platform/viewport-resize-fix
Viewport resize fix
2 parents 2b5dee1 + fb433f7 commit e1f7061

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.circleci/config.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ workflows:
237237
filters:
238238
branches:
239239
only:
240-
- spirit-award
240+
- free
241241
# This is alternate dev env for parallel testing
242242
- "build-qa":
243243
context : org-global
@@ -260,7 +260,6 @@ workflows:
260260
branches:
261261
only:
262262
- develop
263-
- fix-dashboard-auth
264263
# Production builds are exectuted
265264
# when PR is merged to the master
266265
# Don't change anything in this configuration

src/shared/components/Contentful/Viewport/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ function ViewportContentLoader(props) {
113113
let animation = {};
114114
if (animationOnScroll) {
115115
contentIds.pop();
116-
animation = { ...data.entries.items[animationOnScroll.sys.id].fields };
116+
animation = { ...animationOnScroll.fields };
117117
// Animations only on client side
118118
if (isomorphy.isClientSide()) {
119119
AOS.init();

0 commit comments

Comments
 (0)