Fixed scroll to top not showing up on desktop view

This commit is contained in:
sairaj mote 2023-02-17 01:58:08 +05:30
parent 5dddaa626c
commit 90a55854ef

View File

@ -1014,7 +1014,7 @@
const floId = wildcards[0] const floId = wildcards[0]
if (floId && floCrypto.validateFloID(floId)) { if (floId && floCrypto.validateFloID(floId)) {
render.transactions(floId).then(() => { render.transactions(floId).then(() => {
scrollToTopObserver.observe(getRef('transactions_hero_section')) scrollToTopObserver.observe(getRef('transactions_list').firstElementChild)
}) })
} else { } else {
notify('Invalid Flo ID', 'error') notify('Invalid Flo ID', 'error')
@ -1327,7 +1327,7 @@
renderElem(getRef('queried_flo_address'), html`<h4><sm-copy clip-text value=${queriedFloId}></sm-copy></h4>`) renderElem(getRef('queried_flo_address'), html`<h4><sm-copy clip-text value=${queriedFloId}></sm-copy></h4>`)
} }
}) })
// render transactions // show spinner
getRef('transactions_scroller').nextElementSibling.classList.remove('hide') getRef('transactions_scroller').nextElementSibling.classList.remove('hide')
getRef('transactions_scroller').classList.add('hide') getRef('transactions_scroller').classList.add('hide')
getRef('transactions_list').innerHTML = ''; getRef('transactions_list').innerHTML = '';
@ -1337,6 +1337,7 @@
if (filter !== 'all') { if (filter !== 'all') {
allTransactions = allTransactions.filter(t => filter === 'sent' ? t.sender === queriedFloId : t.receiver === queriedFloId) allTransactions = allTransactions.filter(t => filter === 'sent' ? t.sender === queriedFloId : t.receiver === queriedFloId)
} }
// render transactions
if (transactionsLazyLoader) { if (transactionsLazyLoader) {
transactionsLazyLoader.update(allTransactions) transactionsLazyLoader.update(allTransactions)
} else { } else {