From 8e89a5c4d83d5592c66a250ceba3b7dd9704c98b Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Tue, 25 Apr 2023 22:07:54 +0530 Subject: [PATCH] Bug fixes --- index.html | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 9c1ed1a..f652d6c 100644 --- a/index.html +++ b/index.html @@ -314,7 +314,12 @@ All - + +
+

+ Looks a bit empty here, no transactions yet. +

+
@@ -1250,7 +1255,12 @@ const floId = wildcards[0] if (floId && floCrypto.validateFloID(floId)) { render.transactions(floId).then(() => { - scrollToTopObserver.observe(getRef('transactions_list').firstElementChild) + if (getRef('transactions_list').firstElementChild) { + scrollToTopObserver.observe(getRef('transactions_list').firstElementChild) + getRef('filter_selector').classList.remove('hidden') + } else { + getRef('filter_selector').classList.add('hidden') + } }) } else { notify('Invalid Flo ID', 'error')