sqm-dashboards/app/javascript/controllers/analyze_controller.js
2022-05-30 16:44:18 -07:00

9 lines
218 B
JavaScript

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