Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: arkedge/gaia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 27be09902a1eeba7a7b48d83195e8b59ae8cd7b0
Choose a base ref
..
head repository: arkedge/gaia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b4abc37ca2a1615b91cd6952c3cd05061951f196
Choose a head ref
Showing with 8 additions and 2 deletions.
  1. +8 −2 tmtc-c2a/devtools_frontend/src/components/Layout.tsx
10 changes: 8 additions & 2 deletions tmtc-c2a/devtools_frontend/src/components/Layout.tsx
Original file line number Diff line number Diff line change
@@ -104,8 +104,14 @@ const TelemetryListSidebar: React.FC<TelemetryListSidebarProps> = ({
>
<span onClick={() => toggleRecordingStatus(item.name)}>
{recorderStatus?.recordingTelemetries.has(item.name)
? "●"
: "○"}
? <div className="py-1">
<div className="w-3 h-3 bg-red-600 rounded-full"></div>
</div>
: <div className="py-1">
<div className="w-3 h-3 bg-gray-600 rounded-full"></div>
</div>

}
</span>
<code
className={`${Classes.FILL} ${Classes.TEXT_OVERFLOW_ELLIPSIS}`}