Skip to content

Commit

Permalink
Fix indentation for JavaScript linter
Browse files Browse the repository at this point in the history
  • Loading branch information
HyukjinKwon committed May 14, 2021
1 parent 8fa739f commit 69a08ac
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ function getThreadDumpEnabled() {
return threadDumpEnabled;
}

function formatLossReason(removeReason, type, row) {
if (removeReason) {
return removeReason
} else {
return ""
}
function formatLossReason(removeReason) {
if (removeReason) {
return removeReason
} else {
return ""
}
}

function formatStatus(status, type, row) {
Expand Down Expand Up @@ -553,8 +553,8 @@ $(document).ready(function () {
}
},
{
data: 'removeReason',
render: formatLossReason
data: 'removeReason',
render: formatLossReason
}
],
"order": [[0, "asc"]],
Expand Down

0 comments on commit 69a08ac

Please sign in to comment.