Add missing rendering condition

This commit is contained in:
Julie Lenaerts 2025-03-11 09:49:40 +01:00
parent ac6a81cbd8
commit b4c6ccf309

View File

@ -7,7 +7,7 @@
</li> </li>
</ul> </ul>
<ul class="record_actions"> <ul class="record_actions">
<li class="btn btn-sm btn-misc"> <li v-if="isCurrentUserPicker" class="btn btn-sm btn-misc">
<label class="flex items-center gap-2"> <label class="flex items-center gap-2">
<input <input
ref="itsMeCheckbox" ref="itsMeCheckbox"
@ -106,7 +106,6 @@ const removeEntity = (entity) => {
<style lang="scss" scoped> <style lang="scss" scoped>
.current-user { .current-user {
color: var(--bs-body-color); color: var(--bs-body-color);
//font-style: italic;
background-color: var(--bs-chill-l-gray) !important; background-color: var(--bs-chill-l-gray) !important;
} }
</style> </style>