mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Fixes box shadow not working for table and Hide fx for Make all columns editable field in table (#10439)
* Hide fx for Make all columns editable field in table * Fix box shadow not working for table
This commit is contained in:
parent
cb1c5c6034
commit
e832bbf2c0
2 changed files with 2 additions and 1 deletions
|
|
@ -11,6 +11,7 @@ import { useAppDataStore } from '@/_stores/appDataStore';
|
|||
import _ from 'lodash';
|
||||
|
||||
const shouldAddBoxShadowAndVisibility = [
|
||||
'Table',
|
||||
'TextInput',
|
||||
'PasswordInput',
|
||||
'NumberInput',
|
||||
|
|
|
|||
|
|
@ -704,7 +704,7 @@ class TableComponent extends React.Component {
|
|||
property="isAllColumnsEditable"
|
||||
props={{ isAllColumnsEditable: `{{${this.state.isAllColumnsEditable}}}` }}
|
||||
component={this.props.component}
|
||||
paramMeta={{ type: 'toggle', displayName: 'Make all columns editable' }}
|
||||
paramMeta={{ type: 'toggle', displayName: 'Make all columns editable', isFxNotRequired: true }}
|
||||
paramType="properties"
|
||||
/>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue