Skip to content

Commit 46a9353

Browse files
committed
fix(breadcrumb): update aria-label to use provided prop value
1 parent 43bf39b commit 46a9353

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/components/src/components/breadcrumb/breadcrumb.lite.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default function DBBreadcrumb(props: DBBreadcrumbProps) {
3434
class={cls('db-breadcrumb', props.className)}
3535
data-size={props.size}
3636
data-separator={props.separator}
37-
aria-label={props.ariaLabel ?? 'Breadcrumb'}>
37+
aria-label={props.ariaLabel}>
3838
<ol
3939
class="db-breadcrumb-list"
4040
id={props.id ? `${props.id}-list` : 'db-breadcrumb-list'}>

0 commit comments

Comments
 (0)