Merge branch 'staging' into to-fixes

This commit is contained in:
leigh-mil
2020-01-06 12:23:24 -05:00
committed by GitHub
3 changed files with 51 additions and 26 deletions

View File

@@ -49,7 +49,7 @@
<span v-html='formatDollars(application.last_month || 0)'></span>
</td>
<td class="table-cell--align-right">
<span v-html='formatDollars(application.total)'></span>
<span v-html='formatDollars(application.total || 0)'></span>
</td>
</tr>
<tr
@@ -67,7 +67,7 @@
<span v-html='formatDollars(environment.last_month || 0)'></span>
</td>
<td class="table-cell--align-right">
<span v-html='formatDollars(environment.total)'></span>
<span v-html='formatDollars(environment.total || 0)'></span>
</td>
</tr>
</template>