bugfixing
This commit is contained in:
parent
d2bddf9c3c
commit
2a90a0bb6b
@ -193,7 +193,8 @@
|
||||
}
|
||||
|
||||
rawData = updateData;
|
||||
stockList = rawData?.slice(0, 50); // Assign to stockList instead of rawData directly
|
||||
originalData = rawData;
|
||||
stockList = originalData?.slice(0, 50); // Assign to stockList instead of rawData directly
|
||||
columns = generateColumns(rawData);
|
||||
sortOrders = generateSortOrders(rawData);
|
||||
};
|
||||
|
||||
@ -19,6 +19,7 @@
|
||||
{ name: "Ratings Count", rule: "counter" },
|
||||
{ name: "Price Target", rule: "priceTarget" },
|
||||
{ name: "Price", rule: "price" },
|
||||
{ name: "% Change", rule: "changesPercentage" },
|
||||
{ name: "Upside", rule: "upside" },
|
||||
];
|
||||
const hideLastRow = true;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user