From 8796cec49330074d129cbf964639a5847e325b35 Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Thu, 26 Aug 2021 09:19:18 +0530 Subject: [PATCH] fix: tippy not disappearing on request component modals --- components/http/Request.vue | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/components/http/Request.vue b/components/http/Request.vue index d99393002..208a7d4a4 100644 --- a/components/http/Request.vue +++ b/components/http/Request.vue @@ -115,18 +115,33 @@ @@ -165,13 +180,23 @@ ref="copyRequest" :label="$t('request.copy_link')" :icon="hasNavigatorShare ? 'share' : 'content_copy'" - @click.native="copyRequest()" + @click.native=" + () => { + copyRequest() + sendOptions.tippy().hide() + } + " />