style: move Currency column after Cost column

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ben Weeks 2025-12-23 13:40:00 +00:00
parent 0e2cad101d
commit e568d55760
2 changed files with 10 additions and 10 deletions

View file

@ -80,13 +80,6 @@ window.app.component('shipping-zones-list', {
field: 'countries',
sortable: true
},
{
name: 'currency',
align: 'left',
label: 'Currency',
field: 'currency',
sortable: true
},
{
name: 'cost',
align: 'left',
@ -94,6 +87,13 @@ window.app.component('shipping-zones-list', {
field: 'cost',
sortable: true
},
{
name: 'currency',
align: 'left',
label: 'Currency',
field: 'currency',
sortable: true
},
{
name: 'actions',
align: 'right',

View file

@ -42,12 +42,12 @@
<q-td key="countries" :props="props">
<span v-text="props.row.countries.join(', ')"></span>
</q-td>
<q-td key="currency" :props="props">
<span v-text="props.row.currency"></span>
</q-td>
<q-td key="cost" :props="props">
<span v-text="props.row.cost"></span>
</q-td>
<q-td key="currency" :props="props">
<span v-text="props.row.currency"></span>
</q-td>
<q-td key="actions" :props="props">
<q-btn
size="sm"