diff --git a/CHANGELOG.md b/CHANGELOG.md index 53bbb88..aa19b41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file. - No unreleased changes recorded yet. +## 1.5.14 - 2026-07-26 + +### Fixed + +- Dashboard client action icons now render valid Bootstrap Icon classes without duplicating the `bi-` prefix. + ## 1.5.13 - 2026-07-26 ### Added diff --git a/package-lock.json b/package-lock.json index 0e2b8b7..4d12d99 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pulse-signage", - "version": "1.5.13", + "version": "1.5.14", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pulse-signage", - "version": "1.5.13", + "version": "1.5.14", "dependencies": { "@sparticuz/chromium": "^137.0.0", "bootstrap-icons": "1.11.3", diff --git a/package.json b/package.json index 42427fc..d1c4f8a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pulse-signage", - "version": "1.5.13", + "version": "1.5.14", "private": false, "description": "Pulse Signage application with MySQL and media storage", "repository": { diff --git a/src/web/public/js/dashboard/dashboard-page.js b/src/web/public/js/dashboard/dashboard-page.js index 624afce..6ce9916 100644 --- a/src/web/public/js/dashboard/dashboard-page.js +++ b/src/web/public/js/dashboard/dashboard-page.js @@ -19,7 +19,7 @@ var reloadConfirmMessage = 'Reloading will restart the player page. Continue?'; var blackoutCommandValue = blackout ? 'false' : 'true'; - return '
'; + return ''; } function updateClientActionCell(cell, client) { @@ -35,7 +35,7 @@ var paused = Boolean(client.paused); setButtonVariant(pauseButton, ['btn-secondary', 'btn-outline-primary'], 'btn-info'); - pauseButton.innerHTML = '' + (paused ? 'Resume' : 'Pause'); + pauseButton.innerHTML = '' + (paused ? 'Resume' : 'Pause'); var pauseForm = pauseButton.form; if (pauseForm) {