fix: Correct misleading 'button above' text in node setup. Related to #873

The copy button is visually positioned to the right of the code block,
not above it. Changed to 'Click the copy button' for clarity.
This commit is contained in:
rcourtman
2025-12-23 09:41:38 +00:00
parent 925c7ed5b6
commit b3b87bda76
@@ -841,7 +841,7 @@ export const NodeModal: Component<NodeModalProps> = (props) => {
when={agentInstallCommand().length > 0}
fallback={
<code class="text-blue-400">
Click the button above to copy the install command
Click the copy button to generate the install command
</code>
}
>
@@ -963,7 +963,7 @@ export const NodeModal: Component<NodeModalProps> = (props) => {
fallback={
<code class="text-blue-400">
{formData().host
? 'Click the button above to copy the setup command'
? 'Click the copy button to generate the setup command'
: 'Please enter the Host URL above first'}
</code>
}
@@ -1517,7 +1517,7 @@ export const NodeModal: Component<NodeModalProps> = (props) => {
fallback={
<code class="text-blue-400">
{formData().host
? 'Click the button above to copy the setup command'
? 'Click the copy button to generate the setup command'
: '⚠️ Please enter the Host URL above first'}
</code>
}