Home / Function/ UpdateExistingIssue() — react Function Reference

UpdateExistingIssue() — react Function Reference

Architecture documentation for the UpdateExistingIssue() function in UpdateExistingIssue.js from the react codebase.

Entity Profile

Dependency Diagram

graph TD
  aecacd1f_ab0d_37ce_fae9_6e243f134a2e["UpdateExistingIssue()"]
  b1d9750c_fd20_7898_0223_46fdfc9cdaf4["UpdateExistingIssue.js"]
  aecacd1f_ab0d_37ce_fae9_6e243f134a2e -->|defined in| b1d9750c_fd20_7898_0223_46fdfc9cdaf4
  style aecacd1f_ab0d_37ce_fae9_6e243f134a2e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

packages/react-devtools-shared/src/devtools/views/ErrorBoundary/UpdateExistingIssue.js lines 16–38

export default function UpdateExistingIssue({
  gitHubIssue,
}: {
  gitHubIssue: GitHubIssue,
}): React.Node {
  const {title, url} = gitHubIssue;
  return (
    <div className={styles.GitHubLinkRow}>
      <Icon className={styles.ReportIcon} type="bug" />
      <div className={styles.UpdateExistingIssuePrompt}>
        Update existing issue:
      </div>
      <a
        className={styles.ReportLink}
        href={url}
        rel="noopener noreferrer"
        target="_blank"
        title="Report bug">
        {title}
      </a>
    </div>
  );
}

Domain

Subdomains

Frequently Asked Questions

What does UpdateExistingIssue() do?
UpdateExistingIssue() is a function in the react codebase, defined in packages/react-devtools-shared/src/devtools/views/ErrorBoundary/UpdateExistingIssue.js.
Where is UpdateExistingIssue() defined?
UpdateExistingIssue() is defined in packages/react-devtools-shared/src/devtools/views/ErrorBoundary/UpdateExistingIssue.js at line 16.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free