Skip to content

Commit

Permalink
fix #339, set password on initial share of a report
Browse files Browse the repository at this point in the history
  • Loading branch information
stitch committed Mar 4, 2024
1 parent 04c2763 commit 19fb5fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/reports/SharingConfiguration.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default {
this.loading = true;
http.post('/data/report/share/share/', {
'report_id': this.report.id,
'public_share_code': this.public_share_code
'public_share_code': this.report.public_share_code
}).then(data => {
this.response = data.data;
this.report.is_publicly_shared = data.data.data.is_publicly_shared;
Expand Down

0 comments on commit 19fb5fb

Please sign in to comment.