Skip to content
Snippets Groups Projects
Commit dbe63e33 authored by Ewen Le Bihan's avatar Ewen Le Bihan
Browse files

style(event card): place collapse arrow consistently on the right

parent a7c88c10
Branches
Tags v1.23.6
No related merge requests found
......@@ -248,9 +248,8 @@
.title {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
justify-content: space-between;
/* ça sert à ce que la hauteur ne varie pas selon si c'est collapsible ou pas */
min-height: 5rem;
......@@ -269,7 +268,6 @@
.title-text {
line-height: 1.1;
text-align: center;
}
.title:not(.has-picture) {
......@@ -313,6 +311,7 @@
}
.chevron-up {
flex-shrink: 0;
padding: 0;
margin: 0;
font-size: 2rem;
......
......@@ -33,15 +33,17 @@
searchUsers: [
{ q: query },
{
user: {
uid: true,
fullName: true,
firstName: true,
lastName: true,
pictureFile: true,
},
},
],
});
return searchUsers.filter(({ uid }) => allowed(uid));
return searchUsers.filter(({ user: { uid } }) => allowed(uid)).map(({ user }) => user);
}
</script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment