Исправлен баг с анимацией карточек

This commit is contained in:
Daria Golova
2022-12-15 13:39:47 +03:00
parent 6b23d47d73
commit 79cd15aef4
2 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
<template lang="pug">
.wrapper.cursor-pointer.my-1.relative(
.wrapper.cursor-pointer.my-1(
:style="themeColors",
:class="cardTheme",
ref="eventCard"
@@ -227,7 +227,7 @@ export default {
changeFormWasClosed: {
immediate: true,
handler(newValue) {
if (newValue === true) {
if (newValue === true && this.isActive) {
this.isActive = false;
this.$emit("reset-change-form");
}