Skip to content

Commit

Permalink
Merge pull request #12201 from rak-phillip/bugfix/11474-extension-col…
Browse files Browse the repository at this point in the history
…span

Use `fullColspan` for `projectsWithoutNamespaces`
  • Loading branch information
rak-phillip authored Oct 10, 2024
2 parents 7a296a5 + 72d2085 commit 9e9e25b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shell/components/ExplorerProjectsNamespaces.vue
Original file line number Diff line number Diff line change
Expand Up @@ -477,24 +477,24 @@ export default {
<template
v-for="(project, i) in projectsWithoutNamespaces"
:key="i"
v-slot:[slotName(project)]
#[slotName(project)]="{ fullColspan }"
>
<tr
class="main-row"
>
<td
class="empty text-center"
colspan="5"
:colspan="fullColspan"
>
{{ t('projectNamespaces.noNamespaces') }}
</td>
</tr>
</template>
<template #main-row:fake-empty>
<template #main-row:fake-empty="{ fullColspan }">
<tr class="main-row">
<td
class="empty text-center"
colspan="5"
:colspan="fullColspan"
>
{{ t('projectNamespaces.noProjectNoNamespaces') }}
</td>
Expand Down

0 comments on commit 9e9e25b

Please sign in to comment.