Skip to content

Commit

Permalink
update code
Browse files Browse the repository at this point in the history
  • Loading branch information
nikiquickie committed Dec 10, 2024
1 parent c6123f9 commit ec74afb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ export const commerceproductquantityFormComponents = {
]
},
{
name: 'Text',
key: 'description',
name: 'Number',
key: 'quantity',
fields: [
{
name: 'Placeholder',
value: 'fill commerceproductquantity description',
value: 'fill commerceproductquantity quantity',
},
{
name: 'Label',
value: 'Description',
value: 'Quanity',
}
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { log } from 'console';
standalone: false
})
export class CommerceproductquantitiesComponent {
columns = ['name', 'description'];
columns = ['name', 'code', "quantity"];

store = this._router.url.includes('/store/') ? this._router.url.split('/')[3] : '';
warehouse = this._router.url.includes('/warehouse/') ? this._router.url.split('/')[3] : '';
Expand Down

0 comments on commit ec74afb

Please sign in to comment.