fix(ivy): unable to bind SafeValue to clip-path (#30491)
Fixes not being able to pass in a `SafeValue` to a `clip-path` binding, because `clip-path` wasn't in the list of exceptions. PR Close #30491
This commit is contained in:
@ -477,7 +477,7 @@ function isStyleSanitizable(prop: string): boolean {
|
||||
return prop === 'background-image' || prop === 'backgroundImage' || prop === 'background' ||
|
||||
prop === 'border-image' || prop === 'borderImage' || prop === 'filter' ||
|
||||
prop === 'list-style' || prop === 'listStyle' || prop === 'list-style-image' ||
|
||||
prop === 'listStyleImage';
|
||||
prop === 'listStyleImage' || prop === 'clip-path' || prop === 'clipPath';
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user