diff --git a/src/reprocess/ReprocessResultTable.vue b/src/reprocess/ReprocessResultTable.vue index 9f5310b..e62855e 100644 --- a/src/reprocess/ReprocessResultTable.vue +++ b/src/reprocess/ReprocessResultTable.vue @@ -16,9 +16,9 @@ const computedResult = computed(() => props.result.map(r =>({ ...r, buy_ratio: (r.buy_reprocess / r.buy) - 1, sell_ratio: (r.sell_reprocess / r.sell) - 1 -}))) +})).sort((a, b) => a.name.localeCompare(b.name))) -const threshold = useStorage('reprocess-threshold', 90); +const threshold = useStorage('reprocess-threshold', 100);