Skip to content

Commit

Permalink
feat(google): fix prettier issue
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarulg committed Oct 18, 2024
1 parent 5fb90e3 commit eee7e78
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@
<td class="table-label" ng-if="$ctrl.labelsLeft">
<b>{{ $ctrl.valueLabel }}</b>
</td>
<td><textarea class="form-control input input-sm" ng-model="pair.value" rows="4">
<td>
<textarea class="form-control input input-sm" ng-model="pair.value" rows="4">
{{ typeof pair.value === 'object' ? JSON.stringify(pair.value, null, 2) : pair.value }}
</textarea></td>
</textarea
>
</td>
<td>
<div class="form-control-static">
<a href ng-click="$ctrl.removeField($index)">
Expand Down

0 comments on commit eee7e78

Please sign in to comment.