Changed icon, added translation

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-05-25 10:20:52 +01:00
parent 4adbd7af4c
commit 3a2900621c
2 changed files with 2 additions and 1 deletions

View file

@ -500,6 +500,7 @@ return [
'address2' => 'Address Line 2',
'import_note' => 'Imported using csv importer',
],
'remove_customfield_association' => 'Remove this field from the fieldset. This will not delete the custom field, only this field\'s association with this fieldset.',
'percent_complete' => '% complete',
'uploading' => 'Uploading... ',
'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.',

View file

@ -77,7 +77,7 @@
@can('update', $custom_fieldset)
<form method="post" action="{{ route('fields.disassociate', [$field, $custom_fieldset->id]) }}">
@csrf
<button type="submit" class="btn btn-sm btn-danger"><i class="fa fa-trash icon-white" aria-hidden="true"></i></button>
<button type="submit" class="btn btn-sm btn-danger" data-tooltip="true" title="{{ trans('general.remove_customfield_association') }}"><i class="fa fa-minus icon-white" aria-hidden="true"></i></button>
</form>
@endcan
</td>