{item.repo}
-- {item.title} -
++ {item.title} +
+Ignored {formatDate(item.ignoredAt)}
diff --git a/src/app/components/dashboard/IssuesTab.tsx b/src/app/components/dashboard/IssuesTab.tsx index 4154d7d7..77de0030 100644 --- a/src/app/components/dashboard/IssuesTab.tsx +++ b/src/app/components/dashboard/IssuesTab.tsx @@ -18,6 +18,7 @@ import { groupByRepo, computePageLayout, slicePageGroups, orderRepoGroups, isUse import { createReorderHighlight } from "../../lib/reorderHighlight"; import RepoLockControls from "../shared/RepoLockControls"; import RepoGitHubLink from "../shared/RepoGitHubLink"; +import { Tooltip } from "../shared/Tooltip"; export interface IssuesTabProps { issues: Issue[]; @@ -271,17 +272,18 @@ export default function IssuesTab(props: IssuesTabProps) { setPage(0); }} /> - +Repos you contribute to but don't own. Issues and PRs are tracked; workflow runs are not.
diff --git a/src/app/components/settings/SettingRow.tsx b/src/app/components/settings/SettingRow.tsx index 97314589..400a176b 100644 --- a/src/app/components/settings/SettingRow.tsx +++ b/src/app/components/settings/SettingRow.tsx @@ -2,13 +2,17 @@ import { JSX, Show } from "solid-js"; export default function SettingRow(props: { label: string; + labelSuffix?: JSX.Element; description?: string; children: JSX.Element; }) { return (