We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3b34ac commit 4c181a6Copy full SHA for 4c181a6
1 file changed
packages/extension/src/ui/action/views/asset-detail-view/components/asset-detail-action.vue
@@ -2,6 +2,7 @@
2
<div class="asset-detail__action">
3
<div class="asset-detail__action-wrap">
4
<button
5
+ v-if="!is_safari"
6
class="asset-detail__action-item"
7
@click="$emit('open:buyAction')"
8
>
@@ -21,6 +22,7 @@
21
22
<Send />Send
23
</router-link>
24
<router-link
25
26
27
:to="{
28
name: 'swap',
@@ -42,6 +44,7 @@ import type { AssetsType } from '@/types/provider';
42
44
import { useRoute } from 'vue-router';
43
45
import { PropType } from 'vue';
46
const route = useRoute();
47
+const is_safari = __IS_SAFARI__;
48
49
defineEmits<{
50
(e: 'toggle:deposit'): void;
0 commit comments