This commit is contained in:
PhilReact 2024-12-24 01:32:14 +02:00
parent 55035f8c43
commit 15d8bcbc65
2 changed files with 37 additions and 35 deletions

View File

@ -109,11 +109,12 @@ export const TradeOffers: React.FC<any> = ({foreignCoinBalance}:any) => {
}
}
const columnDefs: ColDef[] = [
const columnDefs: ColDef[] = useMemo(()=> {
return [
{
headerCheckboxSelection: true, // Adds a checkbox in the header for selecting all rows
checkboxSelection: true, // Adds checkboxes in each row for selection
headerName: "Select", // You can customize the header name
headerName: "", // You can customize the header name
width: 50, // Adjust the width as needed
pinned: 'left', // Optional, to pin this column on the left
resizable: false,
@ -144,6 +145,7 @@ export const TradeOffers: React.FC<any> = ({foreignCoinBalance}:any) => {
}
} },
];
},[qortalNames])

View File

@ -345,7 +345,7 @@ export const Header = ({
}}
>
<img
src={getCoinIcon(getCoinLabel(selectedCoin))}
src={getCoinIcon(getCoinLabel())}
style={{
height: "25px",
width: "auto",