Stop propagation on WI entry delete
| @@ -3009,7 +3009,8 @@ function getWorldEntry(name, data, entry) { | ||
| 3009 | 3009 | // delete button |
| 3010 | 3010 | const deleteButton = template.find('.delete_entry_button'); |
| 3011 | 3011 | deleteButton.data('uid', entry.uid); |
| 3012 | 3012 | deleteButton.on('click', async function (e) { |
| 3013 | + e.stopPropagation(); | |
| 3013 | 3014 | const uid = $(this).data('uid'); |
| 3014 | 3015 | const deleted = await deleteWorldInfoEntry(data, uid); |
| 3015 | 3016 | if (!deleted) return; |