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
{{ message }}
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
If I change Angular's interpolation symbols to something other than the default {{ and }}, then chips using the default template aren't displayed correctly. Instead of showing the chip label, the chip appears with the literal text {{$chip}}.
To work around the problem, I provide a custom chip template inside each use of md-chips, even though it's the same as the default, modulo the interpolation symbols:
Refactor to pull template processing out of $interimElement
and into $mdUtil.
* Enable custom start/end symbols within Chips
Fixesangular#2958. Closesangular#4136.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If I change Angular's interpolation symbols to something other than the default
{{
and}}
, then chips using the default template aren't displayed correctly. Instead of showing the chip label, the chip appears with the literal text{{$chip}}
.This seems to be a recurrence of issue #877.
For example, I have changed the symbols in my
angular.config
function:To work around the problem, I provide a custom chip template inside each use of
md-chips
, even though it's the same as the default, modulo the interpolation symbols:The text was updated successfully, but these errors were encountered: