more UI updates

This commit is contained in:
Tim
2024-03-12 15:23:25 -04:00
parent f4f1122b89
commit 9071cf1ef3
10 changed files with 167 additions and 95 deletions

View File

@@ -37,7 +37,7 @@ export const useChartOrderStore = defineStore('chart_orders', () => {
function newOrder() {
console.log('cos new order')
const order = { id:uuid(), amount:1, builders:[], amountIsTokenA: true, buy: true }
const order = {id:uuid(), amount:1, amountIsTokenA: true, buy: true, builders:[], }
orders.value.push(order)
selectedOrder.value = order
}