Skip to content
Snippets Groups Projects
Commit 124eda05 authored by Pierre-Jean CHANCELLIER's avatar Pierre-Jean CHANCELLIER
Browse files

improve UI

parent c23ae49e
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<th scope="col" class="d-none d-xl-table-cell" v-if="displayPubkey"> <th scope="col" class="d-none d-xl-table-cell" v-if="displayPubkey">
{{ $t("cle.publique.title") }} {{ $t("cle.publique.title") }}
</th> </th>
<th scope="col" class="d-none d-xl-table-cell" v-if="displayDate"> <th scope="col" class="d-none d-sm-table-cell" v-if="displayDate">
{{ $t("membre.datelimpertestatut") }} {{ $t("membre.datelimpertestatut") }}
</th> </th>
</tr> </tr>
...@@ -18,8 +18,7 @@ ...@@ -18,8 +18,7 @@
:key="member.uid" :key="member.uid"
@click="redirect(member.hash)"> @click="redirect(member.hash)">
<th scope="row"> <th scope="row">
<span v-if="$isFavourite(member.uid)">&nbsp;</span> <span v-if="$isFavourite(member.uid)">&nbsp;</span>{{ member.uid }}
{{ member.uid }}
<BadgeCertifStatus <BadgeCertifStatus
:limitDate="member.received_certifications.limit" :limitDate="member.received_certifications.limit"
:memberStatus="member.status" /> :memberStatus="member.status" />
...@@ -28,7 +27,10 @@ ...@@ -28,7 +27,10 @@
<td class="d-none d-xl-table-cell" v-if="displayPubkey"> <td class="d-none d-xl-table-cell" v-if="displayPubkey">
{{ member.pubkey.substring(0, 10) }} {{ member.pubkey.substring(0, 10) }}
</td> </td>
<td v-if="displayDate" v-html="getDatePerteStatus(member)"></td> <td
class="d-none d-sm-table-cell"
v-if="displayDate"
v-html="getDatePerteStatus(member)"></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
idSearch && param.length > 2 && !$apollo.queries.idSearch.loading idSearch && param.length > 2 && !$apollo.queries.idSearch.loading
"> ">
<div class="col-8 m-auto"> <div class="col-8 m-auto">
<MemberList :members="idSearch.ids" :displayDate="false" /> <MemberList :members="idSearch.ids" />
</div> </div>
</div> </div>
</transition> </transition>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment