Fixed minor bug in schema alignment skeleton dialog where namespaces of cell-as-key nodes are not saved properly.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@1171 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-08-20 18:35:02 +00:00
parent 99b8c4dc7a
commit 56edb6ddd4

View File

@ -680,7 +680,7 @@ SchemaAlignmentDialog.UINode.prototype.getJSON = function() {
result = {
nodeType: this._node.nodeType,
columnNames: this._node.columnNames,
type: cloneDeep(this._node.namespace)
namespace: cloneDeep(this._node.namespace)
};
}
} else if (this._node.nodeType == "topic") {