Skip to content

Commit

Permalink
Fix wrong latestVersion in server.js (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnylqm authored and JoelMarcey committed Feb 20, 2018
1 parent 5198752 commit 4a10be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ function execute(port) {
rawContent = insertTableOfContents(rawContent);
}

let latestVersion = env.latestVersion;
let latestVersion = env.versioning.latestVersion;

// replace any links to markdown files to their website html links
Object.keys(mdToHtml).forEach(function(key, index) {
Expand Down

0 comments on commit 4a10be8

Please sign in to comment.