Radish alpha
r
Radicle desktop app
Radicle
Git (anonymous pull)
Log in to clone via SSH
Update issue title in breadcrumbs on edit
Rūdolfs Ošiņš committed 1 year ago
commit 312402b5b5823bea85c442f88ccb759c315d6b81
parent d86291eb79a857dc978cf91022fa0de11489cdfc
1 file changed +2 -1
modified src/views/repo/Issue.svelte
@@ -185,7 +185,6 @@
        },
        opts: { announce: $announce },
      });
-
      issue.title = updatedTitle;
      // Update second column issue title without reloading the whole issue list.
      const issueIndex = issues.findIndex(i => i.id === issue.id);
      if (issueIndex !== -1) {
@@ -194,6 +193,8 @@
      editingTitle = false;
    } catch (error) {
      console.error("Issue editing failed: ", error);
+
    } finally {
+
      await reload();
    }
  }