summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorJoris Vervuurt <developer@joris-vervuurt.com>2018-12-30 20:49:04 +0100
committerGeorge Moschovitis <george.moschovitis@gmail.com>2018-12-30 21:49:04 +0200
commitcc57c07cda6ef9d74407aa05dfe52ea0cc29235c (patch)
treeae01240c26d0f9108308bae98c2cd19dbe2f4f29 /web
parent9b96eee1601ee3ef1bcf8fd5d5ad2c572b026fc9 (diff)
Fix update instructions URL in frontend (#5076)
In the web GUI, I noticed that the update instructions URL in the update modal pointed to a non-existing page. This commit fixes the URL, so that it points to the correct document.
Diffstat (limited to 'web')
-rw-r--r--web/gui/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/gui/main.js b/web/gui/main.js
index 3056f24574..89b1fbc36b 100644
--- a/web/gui/main.js
+++ b/web/gui/main.js
@@ -2803,7 +2803,7 @@ function notifyForUpdate(force) {
save = true;
var compare = 'https://github.com/netdata/netdata/compare/' + sha1.toString() + '...' + sha2.toString();
- versionLog('<p><big><strong>New version of netdata available!</strong></big></p><p>Latest commit: <b><code>' + sha2.substring(0, 7).toString() + '</code></b></p><p><a href="' + compare + '" target="_blank">Click here for the changes log</a> since your installed version, and<br/><a href="https://github.com/netdata/netdata/tree/master/installer/UPDATE.md" target="_blank">click here for directions on updating</a> your netdata installation.</p><p>We suggest to review the changes log for new features you may be interested, or important bug fixes you may need.<br/>Keeping your netdata updated, is generally a good idea.</p>');
+ versionLog('<p><big><strong>New version of netdata available!</strong></big></p><p>Latest commit: <b><code>' + sha2.substring(0, 7).toString() + '</code></b></p><p><a href="' + compare + '" target="_blank">Click here for the changes log</a> since your installed version, and<br/><a href="https://github.com/netdata/netdata/tree/master/packaging/installer/UPDATE.md" target="_blank">click here for directions on updating</a> your netdata installation.</p><p>We suggest to review the changes log for new features you may be interested, or important bug fixes you may need.<br/>Keeping your netdata updated, is generally a good idea.</p>');
document.getElementById('update_badge').innerHTML = '!';
}