parseInt on form_id

This commit is contained in:
rxdn 2022-03-20 00:18:03 +00:00
parent 7d57807df6
commit a9b6d2749d

View File

@ -42,7 +42,8 @@
// Dispatch with data
function dispatchConfirm() {
dispatch('confirm', panel);
let mapped = {...panel, form_id: parseInt(panel.form_id)};
dispatch('confirm', mapped);
}
</script>