FIX: proper property brace expansion syntax :(
This commit is contained in:
parent
fe04a8d8a3
commit
4589bce21b
|
@ -7,7 +7,7 @@ export default Ember.Component.extend({
|
||||||
this.get("location.region"),
|
this.get("location.region"),
|
||||||
this.get("location.country")
|
this.get("location.country")
|
||||||
].filter(Boolean).join(", ");
|
].filter(Boolean).join(", ");
|
||||||
}.property("location.@{city,region,country}"),
|
}.property("location.{city,region,country}"),
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
lookup: function () {
|
lookup: function () {
|
||||||
|
|
Loading…
Reference in New Issue