diff --git a/pandora/config.pandora.jsonc b/pandora/config.pandora.jsonc
index 2f26e2d5..b9e92c41 100644
--- a/pandora/config.pandora.jsonc
+++ b/pandora/config.pandora.jsonc
@@ -875,6 +875,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
"title": "Keywords",
"canAddAnnotations": {"member": true, "staff": true, "admin": true},
"item": "Keyword",
+ "autocomplete": true,
"overlap": true,
"type": "string"
},
diff --git a/static/js/infoView.0xdb.js b/static/js/infoView.0xdb.js
index c93046e8..c6a849ec 100644
--- a/static/js/infoView.0xdb.js
+++ b/static/js/infoView.0xdb.js
@@ -493,7 +493,7 @@ pandora.ui.infoView = function(data) {
.css(css)
.html(
formatKey(Ox._('Filming Locations')) + data.filmingLocations.map(function(location) {
- return '' + location + ''
+ return '' + location + ''
}).join('; ')
)
.appendTo($text);