Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Change share button icon to link
Rūdolfs Ošiņš committed 2 years ago
commit dcdc0bb6b341c578279528f43a4cae1ad859f3ff
parent 7febdb76ddea414b974ded561b7cd81931b4f04b
1 file changed +2 -2
modified src/views/projects/Share.svelte
@@ -15,11 +15,11 @@
  export let baseUrl: BaseUrl;

  const caption = "Link to seed";
-
  let shareIcon: "share" | "checkmark" = "share";
+
  let shareIcon: "link" | "checkmark" = "link";
  let loading = false;

  const restoreIcon = debounce(() => {
-
    shareIcon = "share";
+
    shareIcon = "link";
  }, 1000);

  async function copy() {