diff --git a/quasar.conf.js b/quasar.conf.js index 1012a81..8d98ffc 100644 --- a/quasar.conf.js +++ b/quasar.conf.js @@ -60,6 +60,7 @@ module.exports = function (ctx) { "QInput", "QRadio", "QBtn", + "QBtnToggle", "QIcon", "QTabs", "QTab", diff --git a/src/App.vue b/src/App.vue index c43b97e..dfdb874 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,8 +5,27 @@ diff --git a/src/components/address_book_details.vue b/src/components/address_book_details.vue index efcd4f4..816ecfe 100644 --- a/src/components/address_book_details.vue +++ b/src/components/address_book_details.vue @@ -11,15 +11,13 @@ Edit address book entry - -
- + @@ -30,6 +28,7 @@ @@ -38,16 +37,16 @@ - + + v-model="newEntry.starred" + checked-icon="star" + unchecked-icon="star_border" + class="star-entry" + /> @@ -57,6 +56,7 @@ @@ -65,7 +65,7 @@ - + @@ -91,9 +91,9 @@ Address book details + flat no-ripple + :disable="!is_ready" + @click="edit()" label="Edit" />
@@ -113,7 +113,7 @@
- Recent outgoing transactions to this address + Recent transactions with this address
@@ -155,6 +155,7 @@ export default { } }, computed: mapState({ + theme: state => state.gateway.app.config.appearance.theme, is_ready (state) { return this.$store.getters["gateway/isReady"] } diff --git a/src/components/footer.vue b/src/components/footer.vue index 76cf78e..7aaff61 100644 --- a/src/components/footer.vue +++ b/src/components/footer.vue @@ -1,6 +1,6 @@