From ba09a30b3a606ef7614ff5ee7153f8016cd42e9c Mon Sep 17 00:00:00 2001 From: WrinklyNinja Date: Tue, 20 May 2014 22:14:03 +0100 Subject: [PATCH] Fixed game list type generation. --- resources/report/js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/report/js/script.js b/resources/report/js/script.js index 4f27a534..762da152 100644 --- a/resources/report/js/script.js +++ b/resources/report/js/script.js @@ -467,7 +467,7 @@ function processURLParams() { } /* Fill in game row template's game type options. */ - var select = document.getElementById('gameRow').content.querySelector('.name'); + var select = document.getElementById('gameRow').content.querySelector('select'); for (var j = 0; j < data.gameTypes.length; ++j) { var option = document.createElement('option'); option.value = data.gameTypes[j];