Skip to content

Commit

Permalink
Merge pull request #243 from nextcloud/fix/#237-csvExportError
Browse files Browse the repository at this point in the history
bugfix: #237 debug message broke because of a missing condition case
  • Loading branch information
Florian authored Apr 25, 2023
2 parents 84751db + 5a83c29 commit 7ac80b6
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/shared/components/ncTable/mixins/exportTableMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ export default {
},
getValueByColumnType(set, column) {
const methodName = 'getValueStringFor' + this.ucfirst(column.type) + this.ucfirst(column.subtype) || ''
console.debug('try to get toString methods', {
isFunction: this[methodName] instanceof Function,
methodName,
result: this[methodName](set, column),
})
if (this[methodName] instanceof Function) {
return this[methodName](set, column)
}
Expand Down

0 comments on commit 7ac80b6

Please sign in to comment.