Skip to content

Commit

Permalink
Merge pull request #65 from MamoruFivejars/main
Browse files Browse the repository at this point in the history
fix: [#64] Fix incorrect location info in popup
  • Loading branch information
podarok authored Sep 4, 2024
2 parents 9d2f477 + 12b2c75 commit c539f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/repeat/src/repeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ Vue.use(VueRouter);
},
populatePopupLocation: function (index) {
$('.modal').modal('hide');
this.locationPopup = this.filteredTable[index].location_info;
this.locationPopup = this.pagedTable[index].location_info;
},
populatePopupClass: function (sessionId) {
var component = this;
Expand Down

0 comments on commit c539f01

Please sign in to comment.