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:
parent
0e2cad101d
commit
e568d55760
2 changed files with 10 additions and 10 deletions
|
|
@ -80,13 +80,6 @@ window.app.component('shipping-zones-list', {
|
||||||
field: 'countries',
|
field: 'countries',
|
||||||
sortable: true
|
sortable: true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: 'currency',
|
|
||||||
align: 'left',
|
|
||||||
label: 'Currency',
|
|
||||||
field: 'currency',
|
|
||||||
sortable: true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'cost',
|
name: 'cost',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
|
@ -94,6 +87,13 @@ window.app.component('shipping-zones-list', {
|
||||||
field: 'cost',
|
field: 'cost',
|
||||||
sortable: true
|
sortable: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'currency',
|
||||||
|
align: 'left',
|
||||||
|
label: 'Currency',
|
||||||
|
field: 'currency',
|
||||||
|
sortable: true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'actions',
|
name: 'actions',
|
||||||
align: 'right',
|
align: 'right',
|
||||||
|
|
|
||||||
|
|
@ -42,12 +42,12 @@
|
||||||
<q-td key="countries" :props="props">
|
<q-td key="countries" :props="props">
|
||||||
<span v-text="props.row.countries.join(', ')"></span>
|
<span v-text="props.row.countries.join(', ')"></span>
|
||||||
</q-td>
|
</q-td>
|
||||||
<q-td key="currency" :props="props">
|
|
||||||
<span v-text="props.row.currency"></span>
|
|
||||||
</q-td>
|
|
||||||
<q-td key="cost" :props="props">
|
<q-td key="cost" :props="props">
|
||||||
<span v-text="props.row.cost"></span>
|
<span v-text="props.row.cost"></span>
|
||||||
</q-td>
|
</q-td>
|
||||||
|
<q-td key="currency" :props="props">
|
||||||
|
<span v-text="props.row.currency"></span>
|
||||||
|
</q-td>
|
||||||
<q-td key="actions" :props="props">
|
<q-td key="actions" :props="props">
|
||||||
<q-btn
|
<q-btn
|
||||||
size="sm"
|
size="sm"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue