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
Hello!
I was playing around with your CodeSandbox sample and noticed some missing text.
Here's my fork of the sample: https://codesandbox.io/s/7jx016lwo6
Notice that the name prop passed to header has some static text appended to the beginning.
name
<${Header} name="THIS SHOULD BE RENDERED (${page})" />
When the header is rendered, the static text is missing and just All List is rendered.
All List
I might be missing something here but I would expect the header to say THIS SHOULD BE RENDERED (All) List instead of just All List.
THIS SHOULD BE RENDERED (All) List
Thanks!
EDIT: This is reproducible in your CodeSandbox demo as well - I just made a few changes to make it more clear.
The text was updated successfully, but these errors were encountered:
Looks like we're missing a test for this. Technically the correct syntax would be:
html`<${Header} name=${'THIS SHOULD BE RENDERED (' + page + ')'} />`
Sorry, something went wrong.
This is fixed in HTM 2.2 (codesandbox auto-updated!).
No branches or pull requests
Hello!
I was playing around with your CodeSandbox sample and noticed some missing text.
Here's my fork of the sample: https://codesandbox.io/s/7jx016lwo6
Notice that the
name
prop passed to header has some static text appended to the beginning.When the header is rendered, the static text is missing and just
All List
is rendered.I might be missing something here but I would expect the header to say
THIS SHOULD BE RENDERED (All) List
instead of justAll List
.Thanks!
EDIT: This is reproducible in your CodeSandbox demo as well - I just made a few changes to make it more clear.
The text was updated successfully, but these errors were encountered: