+
Filter:
-
@@ -64,6 +66,8 @@ const { sortedArray, headerProps } = useSort(computed(() => props.items
Item
+ Buy
+ Sell
Q1
Median
Q3
@@ -72,10 +76,12 @@ const { sortedArray, headerProps } = useSort(computed(() => props.items
-
+
|
|
+ {{ formatIsk(r.buy) }} |
+ {{ formatIsk(r.sell) }} |
{{ formatIsk(r.q1) }} |
{{ formatIsk(r.mmedian) }} |
{{ formatIsk(r.q3) }} |
@@ -86,4 +92,10 @@ const { sortedArray, headerProps } = useSort(computed(() => props.items
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/src/market/market.ts b/src/market/market.ts
index 8f15c1b..eb713ef 100644
--- a/src/market/market.ts
+++ b/src/market/market.ts
@@ -15,6 +15,8 @@ export type MarketOrderHistory = {
export type MarketResult = {
type: MarketType;
history: MarketOrderHistory[];
+ buy: number,
+ sell: number
}
export type HistoryQuartils = {
diff --git a/src/service.ts b/src/service.ts
index 4ccb1dc..f2037be 100644
--- a/src/service.ts
+++ b/src/service.ts
@@ -24,6 +24,7 @@ export const esiAxiosInstance = axios.create({
baseURL: esiUrl,
headers: {
'accept': 'application/json',
- "Content-Type": "application/json"
+ "Content-Type": "application/json",
+ "User-Agent": "eveal (eveal.shendai.rip calloch.gael@gmail.com)"
},
})
diff --git a/src/table/SortableHeader.vue b/src/table/SortableHeader.vue
index 4a755c2..5e53469 100644
--- a/src/table/SortableHeader.vue
+++ b/src/table/SortableHeader.vue
@@ -26,7 +26,7 @@ const emit = defineEmits
();