Ver Fonte

fix(Confirm): tooltip wouldn't hide after double clicking/clicking the tooltip

Kristian Vos há 3 anos atrás
pai
commit
250350d64f
1 ficheiros alterados com 3 adições e 1 exclusões
  1. 3 1
      frontend/src/components/Confirm.vue

+ 3 - 1
frontend/src/components/Confirm.vue

@@ -53,7 +53,9 @@ export default {
 
 			this.clickedOnce = false;
 			this.$emit("confirm");
-			this.$refs.confirm.tippy.hide();
+			setTimeout(() => {
+				this.$refs.confirm.tippy.hide();
+			}, 25);
 		},
 		click(event) {
 			if (!this.clickedOnce) this.clickedOnce = true;