Use *actual* current URL for user feedback msg

was using current URL as of page load, but #hash can change after
that, e.g. on profile view
This commit is contained in:
Lance Edgar 2023-06-06 11:54:58 -05:00
parent 0d97ff2936
commit c38dc8b842
2 changed files with 3 additions and 2 deletions

View file

@ -12,6 +12,7 @@ let FeedbackForm = {
},
showFeedback() {
this.referrer = location.href
this.showDialog = true
this.$nextTick(function() {
this.$refs.textarea.focus()