[pbs-devel] [PATCH xtermjs] fix console window title for rust template

Aaron Lauterer a.lauterer at proxmox.com
Wed Nov 11 11:08:46 CET 2020


The nodename was missing from the title because the variable name is
capitalized.

Signed-off-by: Aaron Lauterer <a.lauterer at proxmox.com>
---
 src/www/index.html.hbs.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/www/index.html.hbs.in b/src/www/index.html.hbs.in
index ecbea1b..0dba066 100644
--- a/src/www/index.html.hbs.in
+++ b/src/www/index.html.hbs.in
@@ -1,7 +1,7 @@
 <!doctype html>
 <html>
     <head>
-	<title>{{ nodename }} - Proxmox Console</title>
+	<title>{{ NodeName }} - Proxmox Console</title>
 	<link rel="stylesheet" href="/xtermjs/xterm.css?version=@VERSION@" />
 	<link rel="stylesheet" href="/xtermjs/style.css?version=@VERSION@" />
 	<script src="/xtermjs/xterm.js?version=@VERSION@" ></script>
-- 
2.20.1






More information about the pbs-devel mailing list