diff --git a/src/renderers/Form/Table.tsx b/src/renderers/Form/Table.tsx index 6a9b7649..0332626c 100644 --- a/src/renderers/Form/Table.tsx +++ b/src/renderers/Form/Table.tsx @@ -329,7 +329,7 @@ export default class FormTable extends React.Component { buildColumns(props:TableProps, isCreateMode = false):Array { const env = this.props.env; - let columns:Array = Array.isArray(props.columns) ? props.columns : []; + let columns:Array = Array.isArray(props.columns) ? props.columns.concat() : []; const ns = this.props.classPrefix; let btns = [];