Release v2.11.1
Publish Docker Image / build-and-push-existing-registry (./build/Dockerfile, web, pulse-signage-web) (push) Successful in 1m47s
Publish Docker Image / build-and-push-existing-registry (./build/Dockerfile.player, player, pulse-signage-player) (push) Successful in 31s

This commit is contained in:
2026-09-04 15:43:55 +01:00
parent 2c150b5b2e
commit 98f969ca0f
104 changed files with 3559 additions and 447 deletions
+2 -2
View File
@@ -224,7 +224,7 @@ test('dashboard move client button opens the move modal for the selected row', (
return '';
},
querySelector(selector) {
if (selector === 'td[data-label="Client"] > div') {
if (selector === 'td[data-label="Client"] > div, [data-mobile-client-name]' || selector === 'td[data-label="Client"] > div') {
return { textContent: 'Lobby Client' };
}
return null;
@@ -235,7 +235,7 @@ test('dashboard move client button opens the move modal for the selected row', (
if (selector === 'button[data-action="move-screen"]') {
return this;
}
if (selector === 'tr[data-client-key]') {
if (selector === 'tr[data-client-key], article[data-mobile-client-key]' || selector === 'tr[data-client-key]') {
return row;
}
return null;