Skip to content

Commit

Permalink
fix: hide empty tags placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
NishaSharma14 committed Dec 7, 2023
1 parent 9e7d565 commit cb33a78
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion resources/js/Shared/StudyCardPublic.vue
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,13 @@
>
{{ study.name }}
</p>
<div class="mt-1 h-14 overflow-hidden">
<div
class="mt-1 h-14 overflow-hidden"
v-if="
study.experiment_types &&
study.experiment_types.length > 0
"
>
<span
v-for="type in study.experiment_types"
:key="type"
Expand Down

0 comments on commit cb33a78

Please # to comment.