Skip to content

Commit

Permalink
fix(VCard): loading shouldn't disable the card
Browse files Browse the repository at this point in the history
fixes #9889
  • Loading branch information
jacekkarczmarczyk committed Dec 5, 2019
1 parent 49c47ec commit 1586446
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VCard/VCard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default mixins(
'v-card--hover': this.hover,
'v-card--link': this.isClickable,
'v-card--loading': this.loading,
'v-card--disabled': this.loading || this.disabled,
'v-card--disabled': this.disabled,
'v-card--outlined': this.outlined,
'v-card--raised': this.raised,
'v-card--shaped': this.shaped,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ exports[`VCard.vue should render component and match snapshot 1`] = `
`;

exports[`VCard.vue should render loading card 1`] = `
<div class="v-card v-card--loading v-card--disabled v-sheet theme--light">
<div class="v-card v-card--loading v-sheet theme--light">
<div class="v-card__progress">
<div role="progressbar"
aria-valuemin="0"
Expand Down

0 comments on commit 1586446

Please sign in to comment.