Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
Add external link where Radicle CLI is mentioned
Merged rudolfs opened 2 years ago
2 files changed +8 -2 746e478d 663265f3
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}