Skip to content

Commit

Permalink
linting issues resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
khareRajshree committed Sep 1, 2023
1 parent caa6438 commit 393ac01
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function onNodeSelectorChange(nodeSelectorNoteValue, csmMapValue) {

function onRenameSDCChange(driverName, CONSTANTS_PARAM) {
if ($("#rename-sdc").prop('checked') === true) {
if (driverName == CONSTANTS_PARAM.POWERFLEX){
if (driverName === POWERFLEX){
$('div.sdc-prefix').show();
}
} else {
Expand Down Expand Up @@ -442,7 +442,7 @@ function displayModules(installationType, driverName, CONSTANTS_PARAM) {
$(".storage-capacity").show();
$(".rename-sdc-feature").show();
$(".approve-sdc").show();
if (document.getElementById("csm-version").value == "1.8.0") {
if (document.getElementById("csm-version").value === "1.8.0") {
$(".max-volumes-per-node").show();
$(".nfs-feature").show();
}
Expand Down

0 comments on commit 393ac01

Please sign in to comment.