client: Fix HTML in some toasts

This commit is contained in:
Elian Doran 2024-10-25 20:51:50 +03:00
parent 6799c44e22
commit 2324c9a13b
No known key found for this signature in database

View File

@ -16,7 +16,7 @@ function toast(options) {
);
$toast.find('.toast-title').text(options.title);
$toast.find('.toast-body').text(options.message);
$toast.find('.toast-body').html(options.message);
if (options.id) {
$toast.attr("id", `toast-${options.id}`);