This commit is contained in:
2020-10-09 17:17:03 +00:00
parent 2cb510425e
commit 057596d85e
2 changed files with 8 additions and 3 deletions

View File

@@ -2,4 +2,9 @@ a.72
removed lodash dependency removed lodash dependency
maybe fixed report double deletion error joyce found maybe fixed report double deletion error joyce found
report direct view via url now correctly opens even if user it already logged into AyaNova report direct view via url now correctly opens even if user it already logged into AyaNova
http://localhost:8080/viewreport?oid=20&rid=1 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)

View File

@@ -351,7 +351,7 @@ export default {
); );
}, },
showSmallBrandLogo() { showSmallBrandLogo() {
return !this.hasSmallLogo && this.$vuetify.breakpoint.smAndDown; return !this.hasMediumLogo && this.$vuetify.breakpoint.smAndDown;
}, },
showLargeBrandLogo() { showLargeBrandLogo() {
if (this.showSmallBrandLogo()) { if (this.showSmallBrandLogo()) {
@@ -370,7 +370,7 @@ export default {
}, },
showCustomSmallLogo() { showCustomSmallLogo() {
//https://vuetifyjs.com/en/features/breakpoints/#breakpoint-service //https://vuetifyjs.com/en/features/breakpoints/#breakpoint-service
return this.hasSmallLogo && this.$vuetify.breakpoint.smAndDown; return this.hasMediumLogo && this.$vuetify.breakpoint.smAndDown;
}, },
showCustomMediumLogo() { showCustomMediumLogo() {
return this.hasMediumLogo && this.$vuetify.breakpoint.mdOnly; return this.hasMediumLogo && this.$vuetify.breakpoint.mdOnly;