Show modal when no measures for a school/year have meet their threshold

This commit is contained in:
Liam Morley 2021-11-10 15:44:21 -05:00
parent edeb3f4e59
commit cf6e80ce6b
18 changed files with 220 additions and 21 deletions

8
app/javascript/modal.js Normal file
View file

@ -0,0 +1,8 @@
import { Modal } from "bootstrap";
export function showEmptyDatasetModal() {
const modal = document.querySelector('.modal');
if(modal){
new Modal(modal).show();
}
}