Skip to content

Commit

Permalink
Show onHover full User Key Fingerprint in GrantPermissionDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
SailReal committed Nov 7, 2023
1 parent daf53d2 commit cc15926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/GrantPermissionDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<template v-for="member in users.values()" :key="member.id">
<li class="py-3 flex flex-col">
<div class="flex justify-between items-center">
<div class="flex items-center">
<div class="flex items-center" :title="userKeyFingerprints.get(member.id)">
<img :src="member.pictureUrl" alt="" class="w-8 h-8 rounded-full" />
<p class="ml-4 text-sm font-medium text-gray-900">{{ member.name }}</p>
<p class="ml-3 inline-flex items-center rounded-md bg-gray-50 px-2 py-1 text-xs font-medium text-gray-600 ring-1 ring-inset ring-gray-500/10">{{ userKeyFingerprints.get(member.id)?.substring(0, 8) }}</p>
Expand Down

0 comments on commit cc15926

Please sign in to comment.