Skip to content

Commit 5cdced2

Browse files
committed
first cut at processviewer, coming along nicely. checkpoint
1 parent 3c2215d commit 5cdced2

9 files changed

Lines changed: 721 additions & 39 deletions

File tree

frontend/app/block/blockutil.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ export function blockViewToIcon(view: string): string {
4242
if (view == "tips") {
4343
return "lightbulb";
4444
}
45+
if (view == "processviewer") {
46+
return "microchip";
47+
}
4548
return "square";
4649
}
4750

@@ -67,6 +70,9 @@ export function blockViewToName(view: string): string {
6770
if (view == "tips") {
6871
return "Tips";
6972
}
73+
if (view == "processviewer") {
74+
return "Processes";
75+
}
7076
return view;
7177
}
7278

0 commit comments

Comments
 (0)