Skip to content

Commit

Permalink
sun. show voucher code in uppercase (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
andre8244 authored and edospadoni committed Oct 8, 2019
1 parent c844926 commit fc6fe99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sun/sun-ui/src/components/details-view/HotspotsDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@
>
<template slot="table-row" slot-scope="props">
<td :class="['fancy', 'td-voucher-'+props.row.type]">
<strong>{{ props.row.code }}</strong>
<strong>{{ props.row.code | uppercase }}</strong>
<br>
{{ props.row.user_name}} ({{ props.row.user_mail }})
</td>
Expand Down Expand Up @@ -1164,7 +1164,7 @@
<h3 class="card-pf-title voucher-desc">{{info.data.description}}</h3>
<div class="card-pf-body voucher-main">
<p>
<strong class="voucher-code">{{voucher.code}}</strong>
<strong class="voucher-code">{{voucher.code | uppercase}}</strong>
</p>
</div>
<div class="card-pf-footer voucher-details">
Expand Down

0 comments on commit fc6fe99

Please sign in to comment.