Skip to content

Commit

Permalink
feat: Add the ability to send a kudos from the composer - MEED-2071 - M…
Browse files Browse the repository at this point in the history
…eeds-io/meeds#54  (#323)

This change will add some adjustments to the composer send kudos button.
  • Loading branch information
MayTekayaa authored and exo-swf committed Aug 23, 2023
1 parent c00d76c commit 91f2f7e
Showing 1 changed file with 18 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
<template>
<div>
<v-card
class="d-flex flex-row"
@click="openSendKudosDrawer"
outlined
flat
hover>
<v-card-actions class="ms-3 me-2">
<v-icon
color="primary"
size="50">
fa-award
</v-icon>
</v-card-actions>
<v-card-title class="subtitle-1 font-weight-bold">
{{ $t('exoplatform.kudos.title.sendAKudos') }}
</v-card-title>
</v-card>
</div>
<v-card
class="d-flex flex-row"
outlined
flat
hover
@click="openSendKudosDrawer" >
<v-card-actions class="ms-4 py-3">
<v-icon
color="primary"
size="50">
fa-award
</v-icon>
</v-card-actions>
<v-card-title class="caption font-weight-bold">
{{ $t('exoplatform.kudos.title.sendAKudos') }}
</v-card-title>
</v-card>
</template>
<script>
export default {
Expand All @@ -28,7 +26,7 @@ export default {
type: 'USER_PROFILE',
parentId: '',
owner: eXo.env.portal.userName,
spaceURL: eXo.env.portal.spaceURL,
spaceURL: eXo.env.portal.spaceUrl,
readOnlySpace: true
}}));
},
Expand Down

0 comments on commit 91f2f7e

Please sign in to comment.