Dialogs and Vuetify styling changes
This commit is contained in:
parent
2ba0d57aa8
commit
a97211afdf
45 changed files with 320 additions and 346 deletions
|
|
@ -16,7 +16,7 @@
|
|||
<div class="flex-grow-0 flex-shrink-0 chip-group-wrapper">
|
||||
<div class="h4">{{$t('invite.send_invites_to')}}</div>
|
||||
<div>{{ status }}</div>
|
||||
<v-chip-group active-class="primary--text" column>
|
||||
<v-chip-group selected-class="primary--text" column>
|
||||
<v-chip
|
||||
v-for="member in selectedMembers"
|
||||
:key="member.userId"
|
||||
|
|
@ -43,14 +43,14 @@
|
|||
}}</span>
|
||||
</v-avatar>
|
||||
</template>
|
||||
<template v-slot:default="{ active }">
|
||||
<template v-slot:default="{ isActive }">
|
||||
<v-list-item-title>{{ memberName(member) }}</v-list-item-title>
|
||||
<v-list-item-subtitle
|
||||
v-text="member.userId"
|
||||
></v-list-item-subtitle>
|
||||
<v-list-item-action>
|
||||
<v-btn icon v-if="active">
|
||||
<v-icon color="grey lighten-1">check</v-icon>
|
||||
<v-btn icon v-if="isActive">
|
||||
<v-icon color="grey-lighten-1">check</v-icon>
|
||||
</v-btn>
|
||||
</v-list-item-action>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue