Skip to content

Commit 675f54c

Browse files
committed
Fix reference error
1 parent b76c700 commit 675f54c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ function format(value, field, context = null, parent = null, spec = null, filter
242242
if (Registry.externalRenderer && (spec.custom || spec.items || spec.properties)) {
243243
let formattedValues = {};
244244
for(let key in value) {
245-
if (typeof filter === 'function' && path.length > 0 && !filter(path[0], path.concat([k]))) {
245+
if (typeof filter === 'function' && path.length > 0 && !filter(path[0], path.concat([key]))) {
246246
continue;
247247
}
248248
formattedValues[key] = callbackValue(value[key], key, value);

0 commit comments

Comments
 (0)