From 3d2c9868fdb149353fc86f7d5d5ef0767778e47f Mon Sep 17 00:00:00 2001 From: Max G Date: Wed, 15 Apr 2020 20:44:24 +0000 Subject: [PATCH] * Little Bug Fixes All Around --- client/src/components/NoteInputPanel.vue | 10 +++++----- client/src/components/NoteTitleDisplayCard.vue | 18 +++++++++--------- .../components/TextColorTooltipComponent.vue | 6 ++---- client/src/pages/NotesPage.vue | 3 ++- 4 files changed, 18 insertions(+), 19 deletions(-) diff --git a/client/src/components/NoteInputPanel.vue b/client/src/components/NoteInputPanel.vue index 7edb270..432ece3 100644 --- a/client/src/components/NoteInputPanel.vue +++ b/client/src/components/NoteInputPanel.vue @@ -3,7 +3,7 @@
@@ -19,7 +19,7 @@
- + @@ -35,7 +35,7 @@ - + @@ -151,9 +151,9 @@
- + - + \ No newline at end of file diff --git a/client/src/components/TextColorTooltipComponent.vue b/client/src/components/TextColorTooltipComponent.vue index 6f15bdc..2ab97d6 100644 --- a/client/src/components/TextColorTooltipComponent.vue +++ b/client/src/components/TextColorTooltipComponent.vue @@ -4,11 +4,11 @@ z-index: 1005; top: 42px; /*height: 100px;*/ - width: 415px; + /*width: 415px;*/ left: 0; } .colors-container { - max-width: 400px; + max-width: 370px; } .dot { display: inline-block; @@ -29,12 +29,10 @@ background-color: transparent; width: 100vw; height: 100vh; - cursor: pointer; } @media only screen and (max-width: 740px) { .colors { position: fixed; - width: 100%; left: 0; right: 0; top: 0; diff --git a/client/src/pages/NotesPage.vue b/client/src/pages/NotesPage.vue index 7a8845e..fca8587 100644 --- a/client/src/pages/NotesPage.vue +++ b/client/src/pages/NotesPage.vue @@ -217,10 +217,11 @@ this.$store.dispatch('fetchAndUpdateUserTotals') this.$bus.$on('close_active_note', ({position, noteId, modified}) => { + this.closeNote(position) this.$store.dispatch('fetchAndUpdateUserTotals') if(modified){ - this.updateSingleNote(noteId) + this.updateSingleNote(parseInt(noteId)) } })