From 59adbfb21755dbb3237c14f4885d5fb88ddfbab3 Mon Sep 17 00:00:00 2001 From: Melloware Date: Thu, 21 Mar 2024 09:15:56 -0400 Subject: [PATCH] fix #6197: Tabview unique ID for nav content (#6203) --- components/lib/tabview/TabView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/tabview/TabView.js b/components/lib/tabview/TabView.js index c491279982..cbea0248c7 100644 --- a/components/lib/tabview/TabView.js +++ b/components/lib/tabview/TabView.js @@ -415,7 +415,7 @@ export const TabView = React.forwardRef((inProps, ref) => { const navContentProps = mergeProps( { - id: idState, + id: idState + '_navcontent', ref: contentRef, className: cx('navcontent'), style: props.style,