Skip to content

Commit 1d40198

Browse files
committed
fix: enables showPrRuns when clicking running actions count
1 parent dd67c5e commit 1d40198

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/components/dashboard/PersonalSummaryStrip.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createMemo, For, Show } from "solid-js";
22
import type { Issue, PullRequest, WorkflowRun } from "../../services/api";
33
import type { TabId } from "../layout/TabBar";
4-
import { viewState, resetAllTabFilters, setTabFilter } from "../../stores/view";
4+
import { viewState, updateViewState, resetAllTabFilters, setTabFilter } from "../../stores/view";
55

66
interface SummaryCount {
77
label: string;
@@ -141,6 +141,7 @@ export default function PersonalSummaryStrip(props: PersonalSummaryStripProps) {
141141
applyFilters: () => {
142142
resetAllTabFilters("actions");
143143
setTabFilter("actions", "conclusion", "running");
144+
updateViewState({ showPrRuns: true });
144145
},
145146
});
146147
return items;

0 commit comments

Comments
 (0)