Skip to content

Commit 4d5cf6e

Browse files
author
Masakorala, Manoj
committed
minor fix
1 parent dcd4f76 commit 4d5cf6e

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

lib/index.browser.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/js/NodeModel.js

+1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ class NodeModel {
140140
list.filter((el) => el.hotel === key.hotel).length === 0 && list.push(key);
141141
}
142142
});
143+
console.log("List: ", list);
143144
return list;
144145
}
145146

src/less/react-checkbox-tree.less

+10
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,22 @@
33
@rct-label-active: rgba(red(@rct-icon-color), green(@rct-icon-color), blue(@rct-icon-color), .15);
44
@rct-clickable-hover: rgba(red(@rct-icon-color), green(@rct-icon-color), blue(@rct-icon-color), .1);
55
@rct-clickable-focus: rgba(red(@rct-icon-color), green(@rct-icon-color), blue(@rct-icon-color), .2);
6+
// sass-lint:disable-all
7+
68
.basic-singl-select {
79
width: 300px;
810
input[type=text] {
911
display: inline-block !important;
1012
}
1113
}
14+
15+
.basic-multi-select {
16+
width: 400px;
17+
input[type=text] {
18+
display: inline-block !important; // No result reported
19+
}
20+
}
21+
1222
.react-checkbox-tree {
1323
display: flex;
1424
flex-direction: row-reverse;

src/scss/react-checkbox-tree.scss

+2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ $rct-clickable-focus: rgba($rct-icon-color, .2) !default;
1010
display: inline-block !important; // No result reported
1111
}
1212
}
13+
1314
.basic-multi-select {
1415
width: 400px;
1516
input[type=text] {
1617
display: inline-block !important; // No result reported
1718
}
1819
}
20+
1921
.react-checkbox-tree {
2022
display: flex;
2123
flex-direction: row-reverse;

0 commit comments

Comments
 (0)