mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
import { Modal } from "bootstrap";
|
|
|
|
export function showEmptyDatasetModal() {
|
|
const modal = document.querySelector('.modal');
|
|
if(modal){
|
|
new Modal(modal).show();
|
|
}
|
|
}
|