Stop propagation on WI entry delete

664447d585900fdd71ac173b49eaae6e393bf5e2

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +2 -1Ignore whitespace
public/scripts/world-info.js+2 -1
@@ -3009,7 +3009,8 @@ function getWorldEntry(name, data, entry) {
30093009 // delete button
30103010 const deleteButton = template.find('.delete_entry_button');
30113011 deleteButton.data('uid', entry.uid);
30123012 deleteButton.on('click', async function (e) {
3013+ e.stopPropagation();
30133014 const uid = $(this).data('uid');
30143015 const deleted = await deleteWorldInfoEntry(data, uid);
30153016 if (!deleted) return;