Swapped rows
continuous-integration/drone/push Build is failing Details

This commit is contained in:
kolaente 2019-09-14 20:33:29 +02:00
parent e4bca43489
commit 20836970e5
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ const app = new Vue({
<th scope="col" v-if="mode === 0">Name</th>
<th scope="col" v-if="mode === 1">Gemeinde</th>
<th scope="col" v-if="mode === 0">Gemeinde</th>
<th scope="col">Eingezahlte KonfiCoins Gesamt</th>
<th scope="col" v-if="mode === 1">KonfiCoins pro Person</th>
<th scope="col">Eingezahlte KonfiCoins Gesamt</th>
</tr>
</thead>
<tbody>
@ -22,8 +22,8 @@ const app = new Vue({
<td>{{ (i + 1) }}.</td>
<td>{{ item.name }}</td>
<td v-if="mode === 0">{{ item.gemeinde }}</td>
<td>{{ item.kcoins.toLocaleString('de-DE') }}</td>
<td v-if="mode === 1">{{ parseFloat((item.coins_quota).toFixed(2)).toLocaleString('de-DE') }}</td>
<td>{{ item.kcoins.toLocaleString('de-DE') }}</td>
</tr>
</tbody>
</table>