From 057596d85e82a8d3bc94f8e49805cfb3b39c3253 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 9 Oct 2020 17:17:03 +0000 Subject: [PATCH] --- ayanova/devdocs/changelog.txt | 7 ++++++- ayanova/src/views/login.vue | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ayanova/devdocs/changelog.txt b/ayanova/devdocs/changelog.txt index 681803d8..e3be96c8 100644 --- a/ayanova/devdocs/changelog.txt +++ b/ayanova/devdocs/changelog.txt @@ -2,4 +2,9 @@ a.72 removed lodash dependency maybe fixed report double deletion error joyce found report direct view via url now correctly opens even if user it already logged into AyaNova - http://localhost:8080/viewreport?oid=20&rid=1 \ No newline at end of file + http://localhost:8080/viewreport?oid=20&rid=1 + attachment control + added "drop files here" hint to file list drop zone area if no files are already attached + login - fixed bug that would show large branded logo on small login screen + login - fixed bug that would show no custom logo on small login screen if no small custom logo (should have checked medium instead) + \ No newline at end of file diff --git a/ayanova/src/views/login.vue b/ayanova/src/views/login.vue index 79377785..f8757796 100644 --- a/ayanova/src/views/login.vue +++ b/ayanova/src/views/login.vue @@ -351,7 +351,7 @@ export default { ); }, showSmallBrandLogo() { - return !this.hasSmallLogo && this.$vuetify.breakpoint.smAndDown; + return !this.hasMediumLogo && this.$vuetify.breakpoint.smAndDown; }, showLargeBrandLogo() { if (this.showSmallBrandLogo()) { @@ -370,7 +370,7 @@ export default { }, showCustomSmallLogo() { //https://vuetifyjs.com/en/features/breakpoints/#breakpoint-service - return this.hasSmallLogo && this.$vuetify.breakpoint.smAndDown; + return this.hasMediumLogo && this.$vuetify.breakpoint.smAndDown; }, showCustomMediumLogo() { return this.hasMediumLogo && this.$vuetify.breakpoint.mdOnly;