diff options
author | Mats Larsen <me@supergrecko.com> | 2022-01-17 21:04:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 14:04:09 -0600 |
commit | 0976d65bddd23587644007724509680e8a3b0bf2 (patch) | |
tree | 15230f016d1da41cd208fad5335bdf3f3acf2ce6 | |
parent | fd2e4b0d02129d367aad1b451f4cced89835d889 (diff) | |
download | compiler-explorer-gh-1615.tar.gz compiler-explorer-gh-1615.zip |
Fix issue where changelog would not show, because it grabbed the entire ESModule (#3268)gh-1615
-rw-r--r-- | static/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/main.js b/static/main.js index 593e1a756..020ef62fd 100644 --- a/static/main.js +++ b/static/main.js @@ -186,7 +186,7 @@ function setupButtons(options) { }); $('#changes').on('click', function () { - alertSystem.alert('Changelog', $(require('./changelog.html'))); + alertSystem.alert('Changelog', $(require('./changelog.html').default)); }); $('#ces').on('click', function () { |