Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Commit

Permalink
fix: recommender list margin
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Trost <galexrt@googlemail.com>
  • Loading branch information
galexrt committed Feb 5, 2024
1 parent 059eb20 commit b1c2c6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/recommender/RecommenderList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function listClusterRecommendations(): Promise<ListClusterRecommendationsR
<DataNoDataBlock v-else-if="data === null || data === undefined" />

<template v-else>
<div class="grid grid-col-2">
<div class="mt-2 gap-2 grid grid-col-2">
<RecommenderListEntry
v-for="recommendation in data.recommendations"
:key="recommendation.title"
Expand Down
2 changes: 1 addition & 1 deletion src/components/recommender/RecommenderListEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defineProps<{
<template>
<Container>
<h3 class="text-xl inline-flex items-center gap-1">
<GenericBadge>
<GenericBadge class="gap-1">
<InformationIcon class="h-5 w-auto" :class="getRecommendationLevelTextColor(recommendation.level)" />
{{ RecommendationLevel[recommendation.level] }}
</GenericBadge>
Expand Down

0 comments on commit b1c2c6d

Please sign in to comment.