Fixed meal plan note item edit button tooltip (fixes #1821)

This commit is contained in:
Bernd Bestel 2022-03-14 22:43:07 +01:00
parent 0ba1a82e01
commit a4b1a80cdc
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -283,7 +283,7 @@ $(".calendar").each(function()
<h5 class="text-wrap text-break mb-1 ' + additionalTitleCssClasses + '">' + mealPlanEntry.note + '</h5> \ <h5 class="text-wrap text-break mb-1 ' + additionalTitleCssClasses + '">' + mealPlanEntry.note + '</h5> \
<h5 class="d-print-none"> \ <h5 class="d-print-none"> \
<a class="ml-1 btn btn-outline-danger btn-xs remove-note-button" href="#" data-toggle="tooltip" title="' + __t("Delete this item") + '"><i class="fas fa-trash"></i></a> \ <a class="ml-1 btn btn-outline-danger btn-xs remove-note-button" href="#" data-toggle="tooltip" title="' + __t("Delete this item") + '"><i class="fas fa-trash"></i></a> \
<a class="btn btn-outline-info btn-xs edit-meal-plan-entry-button" href="#" data-toggle="tooltip" title="' + __t("Delete this item") + '"><i class="fas fa-edit"></i></a> \ <a class="btn btn-outline-info btn-xs edit-meal-plan-entry-button" href="#" data-toggle="tooltip" title="' + __t("Edit this item") + '"><i class="fas fa-edit"></i></a> \
' + doneButtonHtml + ' \ ' + doneButtonHtml + ' \
</h5> \ </h5> \
</div>'); </div>');