diff --git a/octoprint/static/js/ui.js b/octoprint/static/js/ui.js index 492ed1e..16b7f74 100644 --- a/octoprint/static/js/ui.js +++ b/octoprint/static/js/ui.js @@ -208,12 +208,19 @@ function AppearanceViewModel(settingsViewModel) { self.name = settingsViewModel.appearance_name; self.color = settingsViewModel.appearance_color; - self.title = ko.computed(function() { + self.brand = ko.computed(function() { if (self.name()) return "OctoPrint: " + self.name(); else return "OctoPrint"; }) + + self.title = ko.computed(function() { + if (self.name()) + return self.name() + " [OctoPrint]"; + else + return "OctoPrint"; + }) } diff --git a/octoprint/templates/index.html b/octoprint/templates/index.html index 0eb142a..1d93c54 100644 --- a/octoprint/templates/index.html +++ b/octoprint/templates/index.html @@ -26,7 +26,7 @@