Skip to content

Commit

Permalink
Merge branch 'main' into test-fix-2
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavolira authored Mar 11, 2025
2 parents 776c56f + 9eea264 commit 48f3b12
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
23 changes: 19 additions & 4 deletions packages/app/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,23 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Janus Community Showcase" />
<meta
name="description"
content="<%= config.getOptionalString('app.title') ?? 'Red Hat Developer Hub' %>"
/>
<% if (config.getOptionalString('app.branding.iconLogo')) { %>
<link
rel="icon"
href="<%= config.getOptionalString('app.branding.iconLogo') %>"
id="dynamic-favicon"
/>
<% } else { %>
<link rel="apple-touch-icon" href="<%= publicPath %>/logo192.png" />
<link
rel="manifest"
href="<%= publicPath %>/manifest.json"
crossorigin="use-credentials"
/>
<link rel="icon" href="<%= publicPath %>/favicon.ico" />
<link rel="shortcut icon" href="<%= publicPath %>/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
Expand All @@ -35,7 +43,14 @@
href="<%= publicPath %>/safari-pinned-tab.svg"
color="#5bbad5"
/>
<link rel="icon" id="dynamic-favicon" href="/favicon.ico" />
<link
rel="icon"
id="dynamic-favicon"
href="<%= publicPath %>/favicon.ico"
/>
<link rel="shortcut icon" href="<%= publicPath %>/favicon.ico" />
<% } %>

<title><%= config.getOptionalString('app.title') ?? 'Backstage' %></title>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/components/AppBase/AppBase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ const AppBase = () => {
<AppProvider>
<AlertDisplay />
<OAuthRequestDialog />
<ConfigUpdater />
<AppRouter>
<ConfigUpdater />
<ApplicationListener />
<Root>
<ApplicationProvider>
Expand Down

0 comments on commit 48f3b12

Please # to comment.