summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreta <gretadoci@gmail.com>2023-08-15 13:37:49 +0200
committerGitHub <noreply@github.com>2023-08-15 13:37:49 +0200
commit4e9e671621557bf335c4b5323860ce2c5b7720d2 (patch)
treefb1d9ad10a606a02e3c17dbab231abbb33af331e
parentb56e5cc31b5a7168a9a7534b4ef9cab76a5daa46 (diff)
parent0282b493d358c5036b614fb97ebd1f1d0d4267a0 (diff)
Merge pull request #3565 from nextcloud/fix/action-link-type
ActionLink should be shown as a secondary button on quick actions
-rw-r--r--src/components/ContactDetails.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/ContactDetails.vue b/src/components/ContactDetails.vue
index 3df94ac3..d170c846 100644
--- a/src/components/ContactDetails.vue
+++ b/src/components/ContactDetails.vue
@@ -222,7 +222,8 @@
<!-- quick actions -->
<div v-else-if="!loadingData" class="contact-details-wrapper">
<div v-if="!editMode" class="quick-actions">
- <Actions v-if="emailAddressProperties">
+ <Actions v-if="emailAddressProperties"
+ type="secondary">
<template #icon>
<IconMail :size="20" />
</template>
@@ -235,7 +236,8 @@
{{ emailAddress }}
</ActionLink>
</Actions>
- <Actions v-if="phoneNumberProperties">
+ <Actions v-if="phoneNumberProperties"
+ type="secondary">
<template #icon>
<IconCall :size="20" />
</template>