This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-release.git
The following commit(s) were added to refs/heads/main by this push:
new db02018 Highlight paths in the file movement form
db02018 is described below
commit db020189f2db4dc1eea6f97053f638e3e685deed
Author: Sean B. Palmer <[email protected]>
AuthorDate: Mon May 19 14:05:39 2025 +0100
Highlight paths in the file movement form
---
atr/templates/finish-selected.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/atr/templates/finish-selected.html
b/atr/templates/finish-selected.html
index 64c9809..7cb569b 100644
--- a/atr/templates/finish-selected.html
+++ b/atr/templates/finish-selected.html
@@ -244,13 +244,13 @@
}
if ((!currentlySelectedFilePath) &&
currentlyChosenDirectoryPath) {
- currentMoveSelectionInfoElement.textContent = `Selected
destination: ${currentlyChosenDirectoryPath}. Please select a file to move.`;
+ currentMoveSelectionInfoElement.innerHTML = `Selected
destination: <strong>${currentlyChosenDirectoryPath}</strong>. Please select a
file to move.`;
confirmMoveButton.disabled = true;
} else if (currentlySelectedFilePath &&
(!currentlyChosenDirectoryPath)) {
- currentMoveSelectionInfoElement.textContent = `Moving:
${currentlySelectedFilePath} to (select destination).`;
+ currentMoveSelectionInfoElement.innerHTML = `Moving
<strong>${currentlySelectedFilePath}</strong> to (select destination).`;
confirmMoveButton.disabled = true;
} else if (currentlySelectedFilePath &&
currentlyChosenDirectoryPath) {
- currentMoveSelectionInfoElement.textContent = `Move:
${currentlySelectedFilePath} to ${currentlyChosenDirectoryPath}`;
+ currentMoveSelectionInfoElement.innerHTML = `Move
<strong>${currentlySelectedFilePath}</strong> to
<strong>${currentlyChosenDirectoryPath}</strong>`;
confirmMoveButton.disabled = false;
} else {
currentMoveSelectionInfoElement.textContent = "Please select
a file and a destination.";
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]