Skip to content

Commit

Permalink
chore: reduce element quantity
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Nov 18, 2024
1 parent 5a0c6b5 commit 50644c8
Showing 1 changed file with 18 additions and 20 deletions.
38 changes: 18 additions & 20 deletions src/Components/Signers/Signer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,24 @@
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div>
<NcListItem :name="signer.displayName"
:force-display-actions="true"
@click="signerClickAction">
<template #icon>
<NcAvatar :size="44" :display-name="signer.displayName" />
</template>
<template #subname>
<Bullet v-for="method in identifyMethodsNames" :key="method" :name="method" />
</template>
<NcActions>
<slot v-if="$slots.actions" slot="actions" name="actions" />
</NcActions>
<template #indicator>
<CheckboxBlankCircle :size="16"
:fill-color="statusColor"
:title="statusText" />
</template>
</NcListItem>
</div>
<NcListItem :name="signer.displayName"
:force-display-actions="true"
@click="signerClickAction">
<template #icon>
<NcAvatar :size="44" :display-name="signer.displayName" />
</template>
<template #subname>
<Bullet v-for="method in identifyMethodsNames" :key="method" :name="method" />
</template>
<NcActions>
<slot v-if="$slots.actions" slot="actions" name="actions" />
</NcActions>
<template #indicator>
<CheckboxBlankCircle :size="16"
:fill-color="statusColor"
:title="statusText" />
</template>
</NcListItem>
</template>
<script>
import CheckboxBlankCircle from 'vue-material-design-icons/CheckboxBlankCircle.vue'
Expand Down

0 comments on commit 50644c8

Please sign in to comment.