-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(compiler-ssr): TransitionGroup owns style-scoped properties on SSR #7557
fix(compiler-ssr): TransitionGroup owns style-scoped properties on SSR #7557
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Size ReportBundles
Usages
|
/ecosystem-ci run |
📝 Ran ecosystem CI: Open
|
cfbe80c
to
ec4045f
Compare
if (tag.type === NodeTypes.DIRECTIVE) { | ||
// dynamic :tag | ||
context.pushStringPart(`<`) | ||
context.pushStringPart(tag.exp!) | ||
if (propsExp) { | ||
context.pushStringPart(propsExp) | ||
} | ||
if (scopeId) { | ||
context.pushStringPart(` ${scopeId}`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes made: we need to ensure a space before the scopeId since propsExp
can either be non-existent or render an empty string. If there is no space, the scopeId will be connected to the open tag name and cause error.
close: #7554