diff --git a/config.xml b/config.xml index df6b4c077..552e89236 100644 --- a/config.xml +++ b/config.xml @@ -1,5 +1,5 @@ - + SuperHero SuperHero wallet diff --git a/package-lock.json b/package-lock.json index fe6645591..ccb56c48f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "superhero-wallet", - "version": "0.0.19", + "version": "0.0.20", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b8d109d0c..362d4be8f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superhero-wallet", - "version": "0.0.19", + "version": "0.0.20", "description": "Superhero wallet", "author": "SuperHero", "license": "MIT", diff --git a/src/popup/App.vue b/src/popup/App.vue index 1c8650dc1..43a1977d1 100644 --- a/src/popup/App.vue +++ b/src/popup/App.vue @@ -139,6 +139,7 @@ export default { position: relative; min-height: 600px; margin: 0 auto; + overflow: visible !important; &.ae-main-popup { background-color: $bg-color !important; diff --git a/src/popup/router/components/TransactionFilters.vue b/src/popup/router/components/TransactionFilters.vue index 149acc819..5e5958473 100644 --- a/src/popup/router/components/TransactionFilters.vue +++ b/src/popup/router/components/TransactionFilters.vue @@ -1,22 +1,20 @@ @@ -35,26 +33,12 @@ export default { direction: '', type: 'date', date_type: 'recent', - fixedheader: '', }; }, - created() { - window.addEventListener('scroll', this.handleScroll); - }, - destroyed() { - window.removeEventListener('scroll', this.handleScroll); - }, computed: { ...mapGetters(['account', 'popup', 'sdk', 'current', 'transactions']), }, methods: { - handleScroll() { - if (window.scrollY > 150) { - this.fixedheader = 'position:fixed; top:50px;max-width:357px'; - } else { - this.fixedheader = ''; - } - }, filtrateTx(type, deteType) { switch (type) { case 'date': @@ -111,6 +95,9 @@ export default {