PolyGerrit: Fix topic url

Regression from I47a8a9b494adf6454aa5f5056f9b0fef86800d8a

In change I47a8a9b494adf6454aa5f5056f9b0fef86800d8a it changed the variable
from change.topic to change.* which caused it to show as an object when
the function was generating the url.

Changing it back to change.topic fixes this.

Bug: Issue 7711
Change-Id: I89b50115a9b3f775a18408b839dfc01b260752aa
This commit is contained in:
Paladox none
2017-11-09 17:50:28 +00:00
parent c4309d433d
commit cd1bb56a13

View File

@@ -220,7 +220,7 @@ limitations under the License.
<gr-linked-chip
text="[[change.topic]]"
limit="40"
href="[[_computeTopicURL(change.*)]]"
href="[[_computeTopicURL(change.topic)]]"
removable="[[!_topicReadOnly]]"
on-remove="_handleTopicRemoved"></gr-linked-chip>
</template>