We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c76542 commit b5efa4dCopy full SHA for b5efa4d
src/components/page_template/page_template.tsx
@@ -160,7 +160,8 @@ export const _EuiPageTemplate: FunctionComponent<EuiPageTemplateProps> = ({
160
const getBottomBarProps = () => ({
161
restrictWidth,
162
paddingSize,
163
- parent: `#${pageInnerId}`,
+ // pageInnerId may contain colons that are parsed as pseudo-elements if not escaped
164
+ parent: `#${CSS.escape(pageInnerId)}`,
165
});
166
167
const innerPanelled = () => panelled ?? Boolean(sidebar.length > 0);
0 commit comments