Skip to content

Commit

Permalink
fix table corners
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboud committed Jun 10, 2024
1 parent 846463c commit c2fc906
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion file-sharing/src/tabs/nfs/ui/NFSExportEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const { validationResult: commentValidationResult } = validationScope.useValidat
<Table
:emptyText="_('No shares. Click \'+\' to add one.')"
noScroll
class="rounded-lg shadow border border-default"
class="rounded-lg shadow border border-default overflow-hidden"
>
<template #thead>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion file-sharing/src/tabs/nfs/ui/NFSExportListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const allExportedPaths = computed(() => props.nfsExports.map(({ path }) => path)
<Table
:emptyText="_('No shares. Click \'+\' to add one.')"
noScroll
class="sm:rounded-lg sm:shadow sm:border sm:border-default"
class="sm:rounded-lg sm:shadow sm:border sm:border-default sm:overflow-hidden"
>
<template #thead>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion file-sharing/src/tabs/samba/ui/ShareListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const shareNames = computed(() => props.shares.map((s) => s.name));
<Table
:emptyText="_('No shares. Click \'+\' to add one.')"
noScroll
class="sm:rounded-lg sm:shadow sm:border sm:border-default"
class="sm:rounded-lg sm:shadow sm:border sm:border-default sm:overflow-hidden"
>
<template #thead>
<tr>
Expand Down

0 comments on commit c2fc906

Please sign in to comment.