From 09be4d32e368180c461fee8c714265b0af2fcdb5 Mon Sep 17 00:00:00 2001 From: junkerderprovinz Date: Mon, 27 Jul 2026 19:03:58 +0200 Subject: [PATCH] fix(mover): use a widely supported arrow (U+2192) for the Mover direction label Fixes #2545 --- emhttp/plugins/dynamix/ShareEdit.page | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/emhttp/plugins/dynamix/ShareEdit.page b/emhttp/plugins/dynamix/ShareEdit.page index 2714f3a89e..f6d4f8ca34 100644 --- a/emhttp/plugins/dynamix/ShareEdit.page +++ b/emhttp/plugins/dynamix/ShareEdit.page @@ -750,8 +750,8 @@ function updateScreen(cache, slow) { } if ((secondaryValue !== "0") && (secondaryValue !== primaryValue)) { - $('#moverDirection1 option:eq(0)').text($('#primary option:eq(' + z(0) + ')').text() + ' ⮕ ' + $('#secondary option:eq(' + z(1) + ')').text()); - $('#moverDirection1 option:eq(1)').text($('#secondary option:eq(' + z(1) + ')').text() + ' ⮕ ' + $('#primary option:eq(' + z(0) + ')').text()); + $('#moverDirection1 option:eq(0)').text($('#primary option:eq(' + z(0) + ')').text() + ' → ' + $('#secondary option:eq(' + z(1) + ')').text()); + $('#moverDirection1 option:eq(1)').text($('#secondary option:eq(' + z(1) + ')').text() + ' → ' + $('#primary option:eq(' + z(0) + ')').text()); $('#moverDirection1').val('0').show(); $('#moverDirection2').hide(); $('#moverAction1').html("" + moverAction1Text); @@ -795,8 +795,8 @@ function updateScreen(cache, slow) { $('#primary option:eq(' + z(0) + ')').prop('selected', true); $('#secondary option:eq(' + z(1) + ')').prop('selected', true); $('#secondary option:eq(1)').prop('disabled', poolsOnly); - $('#moverDirection1 option:eq(0)').text($('#primary option:eq(' + z(0) + ')').text() + ' ⮕ ' + $('#secondary option:eq(' + z(1) + ')').text()); - $('#moverDirection1 option:eq(1)').text($('#secondary option:eq(' + z(1) + ')').text() + ' ⮕ ' + $('#primary option:eq(' + z(0) + ')').text()); + $('#moverDirection1 option:eq(0)').text($('#primary option:eq(' + z(0) + ')').text() + ' → ' + $('#secondary option:eq(' + z(1) + ')').text()); + $('#moverDirection1 option:eq(1)').text($('#secondary option:eq(' + z(1) + ')').text() + ' → ' + $('#primary option:eq(' + z(0) + ')').text()); for (let i = 0; i < secondaryDropdown.options.length; i++) { if (secondaryDropdown.options[i].value === primaryValue || (i === 1 && poolsOnly) || secondaryDropdown.options[i].id === 'cachePoolOption2') { @@ -813,8 +813,8 @@ function updateScreen(cache, slow) { } if ((secondaryValue !== "0") && (secondaryValue !== primaryValue)) { - $('#moverDirection1 option:eq(0)').text($('#primary option:eq(' + z(0) + ')').text() + ' ⮕ ' + $('#secondary option:eq(' + z(1) + ')').text()); - $('#moverDirection1 option:eq(1)').text($('#secondary option:eq(' + z(1) + ')').text() + ' ⮕ ' + $('#primary option:eq(' + z(0) + ')').text()); + $('#moverDirection1 option:eq(0)').text($('#primary option:eq(' + z(0) + ')').text() + ' → ' + $('#secondary option:eq(' + z(1) + ')').text()); + $('#moverDirection1 option:eq(1)').text($('#secondary option:eq(' + z(1) + ')').text() + ' → ' + $('#primary option:eq(' + z(0) + ')').text()); $('#moverDirection1').val('0').show(); $('#moverDirection2').hide(); $('#moverAction1').html("" + moverAction2Text);