mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
linting
This commit is contained in:
parent
116dfa8aca
commit
cc835dc960
@ -1,6 +1,14 @@
|
|||||||
|
<!-- eslint-disable vue/no-static-inline-styles -->
|
||||||
<template>
|
<template>
|
||||||
<div class="statistic-table">
|
<div class="statistic-table">
|
||||||
<b-table-simple style="width: auto;" class="mt-5" :items="items" :fields="fields" striped stacked="md">
|
<b-table-simple
|
||||||
|
style="width: auto"
|
||||||
|
class="mt-5"
|
||||||
|
:items="items"
|
||||||
|
:fields="fields"
|
||||||
|
striped
|
||||||
|
stacked="md"
|
||||||
|
>
|
||||||
<b-thead>
|
<b-thead>
|
||||||
<b-tr>
|
<b-tr>
|
||||||
<b-th></b-th>
|
<b-th></b-th>
|
||||||
@ -34,28 +42,36 @@
|
|||||||
<b-td>
|
<b-td>
|
||||||
<b>{{ $t('statistic.totalGradidoCreated') }}</b>
|
<b>{{ $t('statistic.totalGradidoCreated') }}</b>
|
||||||
</b-td>
|
</b-td>
|
||||||
<b-td class="text-right">{{ $n(value.totalGradidoCreated, 'decimal') }} {{ $t('GDD') }}</b-td>
|
<b-td class="text-right">
|
||||||
|
{{ $n(value.totalGradidoCreated, 'decimal') }} {{ $t('GDD') }}
|
||||||
|
</b-td>
|
||||||
<b-td class="text-right">{{ value.totalGradidoCreated }}</b-td>
|
<b-td class="text-right">{{ value.totalGradidoCreated }}</b-td>
|
||||||
</b-tr>
|
</b-tr>
|
||||||
<b-tr>
|
<b-tr>
|
||||||
<b-td>
|
<b-td>
|
||||||
<b>{{ $t('statistic.totalGradidoDecayed') }}</b>
|
<b>{{ $t('statistic.totalGradidoDecayed') }}</b>
|
||||||
</b-td>
|
</b-td>
|
||||||
<b-td class="text-right">{{ $n(value.totalGradidoDecayed, 'decimal') }} {{ $t('GDD') }}</b-td>
|
<b-td class="text-right">
|
||||||
|
{{ $n(value.totalGradidoDecayed, 'decimal') }} {{ $t('GDD') }}
|
||||||
|
</b-td>
|
||||||
<b-td class="text-right">{{ value.totalGradidoDecayed }}</b-td>
|
<b-td class="text-right">{{ value.totalGradidoDecayed }}</b-td>
|
||||||
</b-tr>
|
</b-tr>
|
||||||
<b-tr>
|
<b-tr>
|
||||||
<b-td>
|
<b-td>
|
||||||
<b>{{ $t('statistic.totalGradidoAvailable') }}</b>
|
<b>{{ $t('statistic.totalGradidoAvailable') }}</b>
|
||||||
</b-td>
|
</b-td>
|
||||||
<b-td class="text-right">{{ $n(value.totalGradidoAvailable, 'decimal') }} {{ $t('GDD') }}</b-td>
|
<b-td class="text-right">
|
||||||
|
{{ $n(value.totalGradidoAvailable, 'decimal') }} {{ $t('GDD') }}
|
||||||
|
</b-td>
|
||||||
<b-td class="text-right">{{ value.totalGradidoAvailable }}</b-td>
|
<b-td class="text-right">{{ value.totalGradidoAvailable }}</b-td>
|
||||||
</b-tr>
|
</b-tr>
|
||||||
<b-tr>
|
<b-tr>
|
||||||
<b-td>
|
<b-td>
|
||||||
<b>{{ $t('statistic.totalGradidoUnbookedDecayed') }}</b>
|
<b>{{ $t('statistic.totalGradidoUnbookedDecayed') }}</b>
|
||||||
</b-td>
|
</b-td>
|
||||||
<b-td class="text-right">{{ $n(value.totalGradidoUnbookedDecayed, 'decimal') }} {{ $t('GDD') }}</b-td>
|
<b-td class="text-right">
|
||||||
|
{{ $n(value.totalGradidoUnbookedDecayed, 'decimal') }} {{ $t('GDD') }}
|
||||||
|
</b-td>
|
||||||
<b-td class="text-right">{{ value.totalGradidoUnbookedDecayed }}</b-td>
|
<b-td class="text-right">{{ value.totalGradidoUnbookedDecayed }}</b-td>
|
||||||
</b-tr>
|
</b-tr>
|
||||||
</b-tbody>
|
</b-tbody>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user