Handling multiple values per field in Examine Management

This commit is contained in:
Callum Whyte
2021-02-22 07:18:31 +00:00
committed by Nathan Woulfe
parent 9ac4eacdbd
commit 121ae2e8a9
3 changed files with 6 additions and 13 deletions

View File

@@ -18,9 +18,9 @@
</tr>
</thead>
<tbody>
<tr ng-repeat="(key, val) in model.searchResultValues track by key">
<tr ng-repeat="(key, values) in model.searchResultValues track by key">
<td>{{key}}</td>
<td style="word-break: break-word;">{{val}}</td>
<td style="word-break: break-word;">{{values | umbCmsJoinArray:', '}}</td>
</tr>
</tbody>
</table>