diff --git a/static/js/helpDialog.js b/static/js/helpDialog.js index d81b12060..6f52e7b2c 100644 --- a/static/js/helpDialog.js +++ b/static/js/helpDialog.js @@ -56,7 +56,7 @@ pandora.ui.helpDialog = function() { strings = Ox.clone(pandora.site, true); strings.addAnnotationShortcuts = strings.layers.map(function(layer, index) { - return '' + index + '' + Ox._('Add {0}', [layer.item.toLowerCase()]) + ''; + return '' + (index + 1) + '' + Ox._('Add {0}', [layer.item.toLowerCase()]) + ''; }).join('\n'); strings.itemName = Ox.map(strings.itemName, function(v) { return v.toLowerCase();