Skip to content

Commit 7a52366

Browse files
committed
consoles removed
1 parent a5f5919 commit 7a52366

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

client/packages/lowcoder/src/comps/comps/listViewComp/listView.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ type Props = {
170170
};
171171

172172
export function ListView(props: Props) {
173-
console.log("🚀 ~ ListView ~ props:", props)
174173
const { comp } = props;
175174
const children = comp.children;
176175
const ref = useRef(null);
@@ -194,7 +193,6 @@ export function ListView(props: Props) {
194193
const showHorizontalScrollbar = useMemo(() => children.showHorizontalScrollbar.getView(), [children.showHorizontalScrollbar]);
195194
const showVerticalScrollbar = useMemo(() => children.showVerticalScrollbar.getView(), [children.showVerticalScrollbar]);
196195
const horizontal = useMemo(() => children.horizontal.getView(), [children.horizontal]);
197-
console.log("🚀 ~ ListView ~ horizontal:", horizontal)
198196
const minHorizontalWidth = useMemo(() => children.minHorizontalWidth.getView(), [children.minHorizontalWidth]);
199197
const noOfColumns = useMemo(
200198
() => Math.max(1, children.noOfColumns.getView()),

client/packages/lowcoder/src/comps/comps/listViewComp/listViewComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const childrenMap = {
5353
showVerticalScrollbar: withDefault(BoolControl, false),
5454
showHorizontalScrollbar: withDefault(BoolControl, false),
5555
horizontalGridCells: SliderControl,
56-
scrollbars: withDefault(BoolControl, false), //TOLOOK INTO
56+
scrollbars: withDefault(BoolControl, false),
5757
showBorder: BoolControl,
5858
pagination: withDefault(PaginationControl, { pageSize: "6" }),
5959
style: styleControl(ListViewStyle, 'style'),

client/packages/lowcoder/src/comps/comps/triContainerComp/triContainerComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const childrenMap = {
4343
autoHeight: AutoHeightControl,
4444
showVerticalScrollbar: withDefault(BoolControl, false),
4545
horizontalGridCells: SliderControl,
46-
scrollbars: withDefault(BoolControl, false), //TOLOOK INTO
46+
scrollbars: withDefault(BoolControl, false),
4747
style: withDefault(styleControl(ContainerStyle, 'style'),{borderWidth:'1px'}),
4848
headerStyle: styleControl(ContainerHeaderStyle, 'headerStyle'),
4949
bodyStyle: styleControl(ContainerBodyStyle, 'bodyStyle'),

0 commit comments

Comments
 (0)