GoogleSheetsIntegrationActions UI Fixes (#454)

This commit is contained in:
Chirag Chhatrala 2024-06-19 15:34:31 +05:30 committed by GitHub
parent 078cf3592d
commit d89e54f4ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 13 additions and 4 deletions

View File

@ -2,15 +2,15 @@
<div class="flex flex-1 items-center"> <div class="flex flex-1 items-center">
<div <div
v-if="integration.provider" v-if="integration.provider"
class="space-y-1" class="hidden md:block space-y-1"
> >
<div <div
class="font-medium mr-2" class="font-medium mr-2"
> >
{{ integration.provider.user.name }} {{ integration.provider.name }}
</div> </div>
<div class="text-sm"> <div class="text-sm">
{{ integration.provider.user.email }} {{ integration.provider.email }}
</div> </div>
</div> </div>
@ -22,8 +22,17 @@
:href="integration.data.url" :href="integration.data.url"
target="_blank" target="_blank"
color="white" color="white"
class="block"
> >
Open spreadsheet <Icon
name="mdi:google-spreadsheet"
size="20px"
/>
Open
<Icon
class="ml-1"
name="heroicons:arrow-top-right-on-square-20-solid"
/>
</v-button> </v-button>
</div> </div>
</div> </div>