Skip to content
Snippets Groups Projects
Commit b9509263 authored by Jure's avatar Jure
Browse files

Merge branch 'another-override-fix' into 'master'

fix(ui-toolkit): fix Root override not getting registered

See merge request pubsweet/pubsweet!322
parents 1ae3083f 075e4392
No related branches found
No related tags found
No related merge requests found
......@@ -42,18 +42,22 @@ const override = (name, overrideKey = 'cssOverrides') => props => {
// ui.Button is not there.
if (!target) return null
// css`` functions from styled components come in as arrays
const isStyledCss = Array.isArray(target)
const hasRoot = has(target, 'Root')
/*
ui.Button is there, but there is no ui.Button.Root or ui.Button: css``.
This also covers the case where you only target children of the component.
eg. if your override looks like ui.Button = { Icon: css`` }
This also covers the case where you only target children of the component,
eg. if your override looks like ui.Button = { Icon: css`` }.
In this case, there would be no overrides for ui.Button, but only for
ui.Button.Icon, which would have its own override.
*/
if (!target.entries) return null
if (!isStyledCss && !hasRoot) return null
// ui.Button.Root exists
if (has(target, 'Root')) {
if (hasRoot) {
return css`
${th(`${overrideKey}.${name}.Root`)};
`
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment