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 209d431 commit d579c57Copy full SHA for d579c57
frontend/src/components/header/index.tsx
@@ -42,6 +42,19 @@ export const Header = () => {
42
// );
43
44
const actions: Action[] = [
45
+ isRunning
46
+ ? {
47
+ text: getTranslatedMessage("header.streaming", language),
48
+ icon: "live-circle",
49
+ link: "/streaming",
50
+ background: "red",
51
+ hoverBackground: "red",
52
+ }
53
+ : {
54
+ text: getTranslatedMessage("header.tickets", language),
55
+ icon: "tickets",
56
+ link: "/tickets",
57
+ },
58
{
59
text:
60
isReady && loggedIn
0 commit comments