Skip to content

Commit

Permalink
Remove data.table dep
Browse files Browse the repository at this point in the history
  • Loading branch information
jrowen committed Jan 9, 2018
1 parent a64ba6d commit 757467e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/rhandsontable.R
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ rhandsontable <- function(data, colHeaders, rowHeaders, comments = NULL,
data = as.data.frame(data)
} else if ("data.table" %in% rClass) {
# temp fix for data.table with S3 class
data = as.data.table(data)
data = as.data.frame(data)
}

if (!useTypes) {
Expand Down

0 comments on commit 757467e

Please sign in to comment.