Skip to content

Commit 4573768

Browse files
conditionally making division column visible
1 parent e56ac20 commit 4573768

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sde_indexing_helper/static/js/candidate_url_list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ function getDivisionColumn() {
829829
return {
830830
data: "division",
831831
width: "10%",
832-
visible: ((is_multi_division)? 'true' : 'false'), searchable: is_multi_division,
832+
visible: (is_multi_division === "true"), searchable: is_multi_division,
833833
render: function (data, type, row) {
834834
let button_text = data ? divisionDict[data] : "Select";
835835
let button_color = data ? "btn-success" : "btn-secondary";

0 commit comments

Comments
 (0)