Skip to content

Commit

Permalink
Merge pull request #124 from Badhan-BUET-Zone/test-branch
Browse files Browse the repository at this point in the history
mahathir/#111/disable button while loading
  • Loading branch information
mirmahathir1 authored Mar 25, 2024
2 parents 635bf45 + 83a39ca commit eb6d499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Statistics/DonationReport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export default {
computed: {
...mapGetters(['getDesignation']),
disableGenerateReportButton(){
return this.startDate === '' && this.endDate === ''
return this.reportLoader || (this.startDate === '' && this.endDate === '')
}
},
methods: {
Expand Down

0 comments on commit eb6d499

Please sign in to comment.