Skip to content

Commit

Permalink
ensure StringColumns.getValue is a string
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Oct 5, 2016
1 parent 9caac77 commit fd70f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ export class StringColumn extends ValueColumn<string> {
if (typeof(v) === 'undefined' || v == null) {
return '';
}
return v;
return String(v);
}

dump(toDescRef:(desc:any) => any):any {
Expand Down

0 comments on commit fd70f8c

Please sign in to comment.