codeforbtv / expunge-vt

Generate more expungements. Deliver more justice.
Apache License 2.0
13 stars 6 forks source link

Chrome Extension Manifest V3 changes and dependency management. #186

Closed NathanWEdwards closed 1 year ago

NathanWEdwards commented 1 year ago

In popup.vue one may modify the following lines from Vue 2 Vue.set() method calls to just simply setting a property:

E.g. from

this.$set(this.responses, noa.id + '-feeForm', false);

to

this.responses[noa.id + '-feeForm'] = false;
NathanWEdwards commented 1 year ago