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 d9b798b commit d6927c7Copy full SHA for d6927c7
web/src/TacComponents.tsx
@@ -125,6 +125,7 @@ type Channel = {
125
url: string;
126
polling_interval?: Duration;
127
enabled: boolean;
128
+ primary: boolean;
129
bundle?: UpstreamBundle;
130
};
131
@@ -379,6 +380,10 @@ export function UpdateChannels(props: UpdateChannelsProps) {
379
380
return "Not enabled";
381
}
382
383
+ if (!e.primary) {
384
+ return "Not primary";
385
+ }
386
+
387
if (!e.bundle) {
388
if (enable_polling) {
389
return <Spinner />;
0 commit comments