bugfixing

This commit is contained in:
MuslemRahimi 2024-12-24 00:02:23 +01:00
parent f1d70e5d26
commit 180efa0b79

View File

@ -53,9 +53,8 @@
]; ];
async function handleSearch( symbol, assetType) { async function handleSearch( symbol, assetType) {
//event.preventDefault(); searchBarTicker(symbol);
searchBarTicker(symbol); goto(`/${assetType === "ETF" ? "etf" : assetType === "Crypto" ? "crypto" : "stocks"}/${symbol}`)
goto(`/${assetType === "ETF" ? "etf" : assetType === "Crypto" ? "crypto" : "stocks"}/${symbol}`)
} }
async function popularTicker(state) { async function popularTicker(state) {
@ -357,7 +356,7 @@
class="cursor-pointer text-white border-b border-gray-600 last:border-none flex h-fit w-auto select-none items-center rounded-button py-3 pl-5 pr-1.5 text-sm capitalize outline-none transition-all duration-75 data-[highlighted]:bg-primary" class="cursor-pointer text-white border-b border-gray-600 last:border-none flex h-fit w-auto select-none items-center rounded-button py-3 pl-5 pr-1.5 text-sm capitalize outline-none transition-all duration-75 data-[highlighted]:bg-primary"
value={item?.symbol} value={item?.symbol}
label={item?.name} label={item?.name}
onclick={() => handleSearch(item?.symbol, item?.type)} on:click={() => handleSearch(item?.symbol, item?.type)}
> >
<div <div
class="flex flex-row items-center justify-between w-full"> class="flex flex-row items-center justify-between w-full">