diff --git a/App/StackExchange.DataExplorer/Scripts/query.js b/App/StackExchange.DataExplorer/Scripts/query.js index 7f141c1c..845d9c66 100644 --- a/App/StackExchange.DataExplorer/Scripts/query.js +++ b/App/StackExchange.DataExplorer/Scripts/query.js @@ -399,7 +399,7 @@ DataExplorer.ready(function () { } DataExplorer.template('#execution-stats', 'text', { - 'records': textOnly ? "Results" : records + " rows", + 'records': textOnly ? "Results" : records + " row" + (records == 1 ? "" : "s"), 'time': response.executionTime === 0 ? "<1" : response.executionTime, 'cached': response.fromCache ? ' (cached)' : '' }); @@ -648,4 +648,4 @@ DataExplorer.ready(function () { return needsCaptcha; } -}); \ No newline at end of file +});