PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.2
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.2
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | classes/Visualizer/Gutenberg/src/Components/Sidebar/TableSettings.js +1 -2 3.10.03.4.2 View file →
@@ -24,9 +24,8 @@
24 24
25 25 const settings = this.props.chart['visualizer-settings'];
26 26
27 27 const type = this.props.chart['visualizer-chart-type'];
28 - const library = this.props.chart['visualizer-chart-library'];
29 28
30 29 return (
31 30 <PanelBody
32 31 title={ __( 'Table Settings' ) }
@@ -33,9 +32,9 @@
33 32 initialOpen={ false }
34 33 className="visualizer-advanced-panel"
35 34 >
36 35
37 - { ( 'DataTable' === library ) ? (
36 + { ( 'dataTable' === type ) ? (
38 37 <Fragment>
39 38 <CheckboxControl
40 39 label={ __( 'Enable Pagination' ) }
41 40 help={ __( 'To enable paging through the data.' ) }