planning_edit: crew: fa-times

instead of fa-angle-right to show that by clicking the sailor will be removed
This commit is contained in:
2025-02-19 14:31:45 +01:00
parent 42e68e5511
commit 8f597051dd

View File

@@ -367,7 +367,7 @@ async function planningEdit(id) {
if (sailor !== null) { if (sailor !== null) {
var item = '<a class="item-crew" onclick="planningChangeCrew(' + sailor.id + ')">'; var item = '<a class="item-crew" onclick="planningChangeCrew(' + sailor.id + ')">';
item += '<span>' + sailor.name + '</span>'; item += '<span>' + sailor.name + '</span>';
item += '<i class="fa fa-angle-right"></i>'; item += '<i class="fa fa-times"></i>';
item += '</a>'; item += '</a>';
$('#menu-edit').find('.content').find('.list-group').append(item); $('#menu-edit').find('.content').find('.list-group').append(item);
} }