Skip to content

Commit accf5b1

Browse files
committed
review fix: remove defaultColumns from react
1 parent 2bdbf3e commit accf5b1

File tree

13 files changed

+0
-13
lines changed

13 files changed

+0
-13
lines changed

apps/demos/Demos/CardView/CardTemplate/React/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => (
88
<CardView
99
dataSource={customers}
1010
keyExpr="ID"
11-
defaultColumns={columns}
1211
>
1312
{ columns.map((column, index) => <Column dataField={column} key={index} />) }
1413
</CardView>

apps/demos/Demos/CardView/ColumnChooser/React/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => (
88
<CardView
99
dataSource={customers}
1010
keyExpr="ID"
11-
defaultColumns={columns}
1211
>
1312
{ columns.map((column, index) => <Column dataField={column} key={index} />) }
1413
</CardView>

apps/demos/Demos/CardView/ColumnHeaderFilter/React/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => (
88
<CardView
99
dataSource={customers}
1010
keyExpr="ID"
11-
defaultColumns={columns}
1211
>
1312
{ columns.map((column, index) => <Column dataField={column} key={index} />) }
1413
</CardView>

apps/demos/Demos/CardView/ColumnsReordering/React/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => (
88
<CardView
99
dataSource={customers}
1010
keyExpr="ID"
11-
defaultColumns={columns}
1211
>
1312
{ columns.map((column, index) => <Column dataField={column} key={index} />) }
1413
</CardView>

apps/demos/Demos/CardView/DataValidation/React/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => (
88
<CardView
99
dataSource={customers}
1010
keyExpr="ID"
11-
defaultColumns={columns}
1211
>
1312
{ columns.map((column, index) => <Column dataField={column} key={index} />) }
1413
</CardView>

apps/demos/Demos/CardView/FieldTemplate/React/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => (
88
<CardView
99
dataSource={customers}
1010
keyExpr="ID"
11-
defaultColumns={columns}
1211
>
1312
{ columns.map((column, index) => <Column dataField={column} key={index} />) }
1413
</CardView>

apps/demos/Demos/CardView/FilterPanel/React/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => (
88
<CardView
99
dataSource={customers}
1010
keyExpr="ID"
11-
defaultColumns={columns}
1211
>
1312
{ columns.map((column, index) => <Column dataField={column} key={index} />) }
1413
</CardView>

apps/demos/Demos/CardView/PopupEditing/React/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => (
88
<CardView
99
dataSource={customers}
1010
keyExpr="ID"
11-
defaultColumns={columns}
1211
>
1312
{ columns.map((column, index) => <Column dataField={column} key={index} />) }
1413
</CardView>

apps/demos/Demos/CardView/SearchPanel/React/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => (
88
<CardView
99
dataSource={customers}
1010
keyExpr="ID"
11-
defaultColumns={columns}
1211
>
1312
{ columns.map((column, index) => <Column dataField={column} key={index} />) }
1413
</CardView>

apps/demos/Demos/CardView/Selection/React/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => (
88
<CardView
99
dataSource={customers}
1010
keyExpr="ID"
11-
defaultColumns={columns}
1211
>
1312
{ columns.map((column, index) => <Column dataField={column} key={index} />) }
1413
</CardView>

0 commit comments

Comments
 (0)