Merge pull request #1685 from OpenRefine/issue1683

Fix aliases rendering in Wikidata schema
This commit is contained in:
Owen Stephens 2018-07-29 11:54:13 +01:00 committed by GitHub
commit fd69149dbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,7 @@ EditRenderer._renderItem = function(json, container) {
this._renderTermsList(json.labels, "label", termsContainer);
this._renderTermsList(json.descriptions, "description", termsContainer);
this._renderTermsList(json.aliases, "alias", termsContainer);
this._renderTermsList(json.addedAliases, "alias", termsContainer);
// Clear the float
$('<div></div>').attr('style', 'clear: right').appendTo(right);