Skip to content

Commit

Permalink
fix(tabs): fix disable animation (oruga-ui#870)
Browse files Browse the repository at this point in the history
* fix(tabs): fix disable animation
fix: oruga-ui#863

* fix(steps): fix disable animation same bug as tabItem
fix: oruga-ui#863
  • Loading branch information
messenjer committed Mar 28, 2024
1 parent 40d8b94 commit 08c1fbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/oruga/src/components/steps/StepItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const elementClasses = defineClasses(["itemClass", "o-steps__item"]);

<template>
<Transition
:disabled="!parent.animated"
:css="parent.animated"
:name="transitionName"
:appear="parent.animateInitially"
@after-enter="afterEnter"
Expand Down
2 changes: 1 addition & 1 deletion packages/oruga/src/components/tabs/TabItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const headerTextClasses = defineClasses([

<template>
<Transition
:disabled="!parent.animated"
:css="parent.animated"
:name="transitionName"
:appear="parent.animateInitially"
@after-enter="afterEnter"
Expand Down

0 comments on commit 08c1fbf

Please sign in to comment.