You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In various places in the documentation it appears that the value of st-search is a string. But in reality it should be an expression that evaluates to a string.
I would update the documentation and submit a PR, but the documentation is missing.
Example:
Change this:
<input st-search="firstName" placeholder="search for firstname" class="input-sm form-control" type="search"/>
to this:
<input st-search="'firstName'" placeholder="search for firstname" class="input-sm form-control" type="search"/>
subtle change. Added single-quotes around the firstName key.
The text was updated successfully, but these errors were encountered:
In various places in the documentation it appears that the value of
st-search
is a string. But in reality it should be an expression that evaluates to a string.I would update the documentation and submit a PR, but the documentation is missing.
Example:
subtle change. Added single-quotes around the
firstName
key.The text was updated successfully, but these errors were encountered: