We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c941f22 commit 5538d56Copy full SHA for 5538d56
.eslintrc
@@ -24,6 +24,7 @@
24
},
25
globals: {
26
// overridden in test/.eslintrc
27
+ APPLICATION_NAME: "readonly",
28
NAMESPACE_TERM: "readonly",
29
30
rules: {
CHANGES/1439.misc
@@ -0,0 +1 @@
1
+Insights - fix window title
src/loaders/insights/insights-loader.js
@@ -27,6 +27,7 @@ class App extends Component {
componentDidMount() {
window.insights.chrome.init();
window.insights.chrome.identifyApp('automation-hub');
+ document.title = APPLICATION_NAME; // change window title from automationHub
31
32
// This listens for insights navigation events, so this will fire
33
// when items in the nav are clicked or the app is loaded for the first
0 commit comments