Show subcategory data when user selects different subcategory from

analyze dropdown.  Finishes #182277850
This commit is contained in:
Nelson Jovel 2022-05-30 16:44:18 -07:00
parent 61978eb45d
commit 6764024cd2
8 changed files with 38 additions and 8 deletions

View file

@ -3,7 +3,7 @@ import { Controller } from "@hotwired/stimulus"
// Connects to data-controller="analyze"
export default class extends Controller {
connect() { }
change_category(event) {
refresh(event) {
window.location = event.target.value
}
}