Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Add external link where Radicle CLI is mentioned
Rūdolfs Ošiņš committed 2 years ago
commit 663265f382637eb7a42460dbaa7990c885e03c03
parent 746e478da3891ad730d1136e8697f2c30ea7cd25
2 files changed +8 -2
modified src/views/projects/Header/CloneButton.svelte
@@ -6,6 +6,7 @@

  import Button from "@app/components/Button.svelte";
  import Command from "@app/components/Command.svelte";
+
  import ExternalLink from "@app/components/ExternalLink.svelte";
  import Icon from "@app/components/Icon.svelte";
  import IconSmall from "@app/components/IconSmall.svelte";
  import Popover from "@app/components/Popover.svelte";
@@ -74,7 +75,9 @@

    {#if radicle}
      <label for="rad-clone-url">
-
        Use the Radicle CLI to clone this project.
+
        Use the <ExternalLink href="https://radicle.xyz">
+
          Radicle CLI
+
        </ExternalLink> to clone this project.
      </label>
      <Command command={radCloneUrl} />
    {:else}
modified src/views/projects/Header/SeedButton.svelte
@@ -6,6 +6,7 @@
  import Button from "@app/components/Button.svelte";
  import Command from "@app/components/Command.svelte";
  import ErrorModal from "@app/modals/ErrorModal.svelte";
+
  import ExternalLink from "@app/components/ExternalLink.svelte";
  import IconSmall from "@app/components/IconSmall.svelte";
  import Popover from "@app/components/Popover.svelte";

@@ -139,7 +140,9 @@
      </Button>
    {:else}
      <span class="seed-label">
-
        Use the Radicle CLI to {seeding ? "stop" : "start"} seeding this project.
+
        Use the <ExternalLink href="https://radicle.xyz">
+
          Radicle CLI
+
        </ExternalLink> to {seeding ? "stop" : "start"} seeding this project.
      </span>
      <Command command={`rad ${seeding ? "unseed" : "seed"} ${projectId}`} />
    {/if}