Skip to content

Commit 46d55b2

Browse files
Add check for both cell and cell underline full width
1 parent 005b592 commit 46d55b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugin/composables/classes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const useDisplayContainerClass: UseDisplayContainerClass = (options) => {
5252

5353
return {
5454
[`${componentName}--display-container-cell`]: cell,
55-
[`${componentName}--display-container-cell-underline-full-width`]: cellUnderlineFullWidth,
55+
[`${componentName}--display-container-cell-underline-full-width`]: cell && cellUnderlineFullWidth,
5656
[`${componentName}--display-container`]: true,
5757
[`${componentName}--display-wrapper-value`]: true,
5858
[`${field}`]: true,

0 commit comments

Comments
 (0)