Skip to content

Commit

Permalink
Merge pull request #7253 from pjonsson/tablemixin-export-name
Browse files Browse the repository at this point in the history
TableMixin: use computed name for export
  • Loading branch information
na9da authored Oct 22, 2024
2 parents dec38bd + 4ec0254 commit 70cd390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ModelMixins/TableMixin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ function TableMixin<T extends AbstractConstructor<BaseType>>(Base: T) {
}

return {
name: (this.name || this.uniqueId)!,
name: name,
file: new Blob([csvString])
};
}
Expand Down

0 comments on commit 70cd390

Please sign in to comment.