diff --git a/frontend/src/App/App.js b/frontend/src/App/App.js index ae1e4f31b..37c453f45 100644 --- a/frontend/src/App/App.js +++ b/frontend/src/App/App.js @@ -8,7 +8,7 @@ import AppRoutes from './AppRoutes'; function App({ store, history }) { return ( - + diff --git a/frontend/src/Components/Page/PageContent.js b/frontend/src/Components/Page/PageContent.js index d21304991..e79643497 100644 --- a/frontend/src/Components/Page/PageContent.js +++ b/frontend/src/Components/Page/PageContent.js @@ -14,7 +14,7 @@ function PageContent(props) { return ( - +
{children}
diff --git a/src/Prowlarr.Http/Frontend/InitializeJsController.cs b/src/Prowlarr.Http/Frontend/InitializeJsController.cs index 947371e88..fc3dcf302 100644 --- a/src/Prowlarr.Http/Frontend/InitializeJsController.cs +++ b/src/Prowlarr.Http/Frontend/InitializeJsController.cs @@ -49,6 +49,7 @@ namespace Prowlarr.Http.Frontend builder.AppendLine($" apiKey: '{_apiKey}',"); builder.AppendLine($" release: '{BuildInfo.Release}',"); builder.AppendLine($" version: '{BuildInfo.Version.ToString()}',"); + builder.AppendLine($" instanceName: '{_configFileProvider.InstanceName.ToString()}',"); builder.AppendLine($" branch: '{_configFileProvider.Branch.ToLower()}',"); builder.AppendLine($" analytics: {_analyticsService.IsEnabled.ToString().ToLowerInvariant()},"); builder.AppendLine($" userHash: '{HashUtil.AnonymousToken()}',");