sqm-dashboards/app/javascript/controllers/analyze_controller.js
2022-05-30 14:54:05 -07:00

9 lines
226 B
JavaScript

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