From 1553fc53eb72ea8cd0e80b6c530eaec8df44de9e Mon Sep 17 00:00:00 2001 From: Erik Harper Date: Fri, 20 Dec 2024 10:06:22 -0800 Subject: [PATCH] feat(list-item): extend bottom border to include actions-start slot (#11116) **Related Issue:** #11115 ## Summary This extends the bottom border of `list-item` content to include content in the `actions-start` slot. BEGIN_COMMIT_OVERRIDE omitted from changelog END_COMMIT_OVERRIDE --- .../calcite-components/src/components/list-item/list-item.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/calcite-components/src/components/list-item/list-item.tsx b/packages/calcite-components/src/components/list-item/list-item.tsx index 91e2267c123..7a6957e480f 100644 --- a/packages/calcite-components/src/components/list-item/list-item.tsx +++ b/packages/calcite-components/src/components/list-item/list-item.tsx @@ -1044,13 +1044,13 @@ export class ListItem {this.renderDragHandle()} {this.renderSelected()} {this.renderOpen()} - {this.renderActionsStart()}
+ {this.renderActionsStart()} {this.renderContentContainer()} {this.renderActionsEnd()}