allowed underscore prefixed unused var

This commit is contained in:
hina
2020-06-06 18:40:49 +09:00
parent b909035fe8
commit 2693d340c6
4 changed files with 6 additions and 4 deletions

View File

@@ -65,7 +65,7 @@
modal.data('id', target.data('id'));
})
.find('.btn-danger')
.on('click', function (event) {
.on('click', function (_event) {
const modal = $('#deleteCheckinModal');
const form = modal.find('form');
form.attr('action', form.attr('action')?.replace('@', modal.data('id')) || null);