Skip to content

Commit

Permalink
Merge pull request #44280 from nextcloud/fix/app-discover-animation
Browse files Browse the repository at this point in the history
fix(settings): App Store Discover carousel animations are inverted
  • Loading branch information
susnux authored Mar 18, 2024
2 parents 133a17a + 54c7752 commit 116b176
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ export default defineComponent({
const internalId = computed(() => props.id ?? (Math.random() + 1).toString(36).substring(7))
const headingId = computed(() => `${internalId.value}-h`)
const transitionName = ref('slide-out')
const transitionName = ref('slide-in')
watch(() => currentIndex.value, (o, n) => {
if (o < n) {
transitionName.value = 'slide-out'
} else {
transitionName.value = 'slide-in'
} else {
transitionName.value = 'slide-out'
}
// Wait next tick
Expand Down
3 changes: 3 additions & 0 deletions dist/3865-3865.js

Large diffs are not rendered by default.

File renamed without changes.
2 changes: 1 addition & 1 deletion dist/8484-8484.js.map → dist/3865-3865.js.map

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions dist/8484-8484.js

This file was deleted.

4 changes: 2 additions & 2 deletions dist/settings-apps-view-4529.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/settings-apps-view-4529.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/settings-vue-settings-apps-users-management.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/settings-vue-settings-apps-users-management.js.map

Large diffs are not rendered by default.

0 comments on commit 116b176

Please sign in to comment.