Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Oksydan committed Dec 6, 2023
1 parent 39a5135 commit 3f75080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _dev/js/theme/components/useAlertToast.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const useAlertToast = (params = {}) => {
* @returns {HTMLElement} - The constructed toast element.
*/
const buildToastTemplate = (text, type, toastId) => parseToHtml(`
<div class="toast ${type ? `text-bg-${type}`: ''}" id=${toastId}>
<div class="toast ${type ? `text-bg-${type}` : ''}" id=${toastId}>
<div class="d-flex">
<div class="toast-body">
${text}
Expand Down

0 comments on commit 3f75080

Please sign in to comment.