We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This causes hasBlock to be true inside the avatar-image.{hbs|embl} when it should not be
hasBlock
avatar-image.{hbs|embl}
%AvatarImage @url=this.session.currentUser.avatarCloudFile.downloadUrl @name=this.session.currentUser.name = this.session.currentUser.shortName
If I use the older syntax, it seems to work
= avatar-image url=this.session.currentUser.avatarCloudFile.downloadUrl name=this.session.currentUser.name = this.session.currentUser.shortName
The text was updated successfully, but these errors were encountered:
This seems to be because angle bracket components are considered to have block if they have a closing tag. Emblem always produces:
<AvatarImage @url={{}} ... ></AvatarImage> vs <AvatarImage @url={{}} ... />
<AvatarImage @url={{}} ... ></AvatarImage>
<AvatarImage @url={{}} ... />
i am not that much of an expert of pegjs to be able to fix it quickly, looking at it, though.
Sorry, something went wrong.
Added support for non-block components definitions with `%my-comp/ @v…
660a21a
…alue=foo`. Also glimmer component will be non-blocked if it's not contain nested nodes. resolved machty#338
Successfully merging a pull request may close this issue.
This causes
hasBlock
to be true inside theavatar-image.{hbs|embl}
when it should not beIf I use the older syntax, it seems to work
The text was updated successfully, but these errors were encountered: