Skip to content

Commit

Permalink
Merge pull request #851 from africanmathsinitiative/master
Browse files Browse the repository at this point in the history
merge from main
  • Loading branch information
dannyparsons authored Jan 31, 2018
2 parents 23a7ee9 + 18459ea commit 9d693a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instat/static/InstatObject/R/data_object_R6.R
Original file line number Diff line number Diff line change
Expand Up @@ -1537,7 +1537,7 @@ data_object$set("public", "filter_string", function(filter_name) {
out = "("
i = 1
for(condition in curr_filter$filter_conditions) {
if(i != 1) out = paste(out, "&&")
if(i != 1) out = paste(out, "&")
out = paste0(out, " (", condition[["column"]], " ", condition[["operation"]])
if(condition[["operation"]] == "%in%") out = paste0(out, " c(", paste(paste0("'", condition[["value"]], "'"), collapse = ","), ")")
else out = paste(out, condition[["value"]])
Expand Down

0 comments on commit 9d693a4

Please sign in to comment.