modal realnych zestawień: przerobiono wygląd; poprawiono performance

This commit is contained in:
2023-04-06 23:14:55 +02:00
parent cc06d5cb0a
commit 678c40dd9b
7 changed files with 194 additions and 142 deletions
+6 -7
View File
@@ -15,7 +15,7 @@ export interface IStore {
chosenCarUseType: string;
stockList: IStock[];
readyStockList: IReadyStockList;
readyStockList: IReadyStockItem[];
cargoOptions: any[][];
chosenStockListIndex: number;
@@ -109,11 +109,10 @@ export interface IStock {
imgSrc?: string;
}
export interface IReadyStockList {
[key: string]: { stockString: string; type: string; number: string; name: string };
export interface IReadyStockItem {
stockString: string;
type: string;
number: string;
name: string;
}