We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c2f39f commit 382ce79Copy full SHA for 382ce79
web/src/DashboardTac.tsx
@@ -137,6 +137,24 @@ export default function DashboardTac() {
137
}}
138
/>
139
</Box>
140
+ <Box>
141
+ <Box variant="awsui-key-label">Hardware Generation</Box>
142
+ <MqttBox
143
+ topic="/v1/tac/info/hardware_generation"
144
+ format={(msg: string) => {
145
+ switch (msg) {
146
+ case "Gen1":
147
+ return "Generation 1";
148
+ case "Gen2":
149
+ return "Generation 2";
150
+ case "Gen3":
151
+ return "Generation 3";
152
+ default:
153
+ return msg;
154
+ }
155
+ }}
156
+ />
157
+ </Box>
158
</ColumnLayout>
159
160
<Form
0 commit comments