This commit is contained in:
@@ -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
|
||||
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)
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user