made Overflow dropdown in the columns section inside table widget inspector consistent with the dark theme (#3900)

This commit is contained in:
Manish Kushare 2022-09-22 11:16:12 +05:30 committed by GitHub
parent b5507b4ac5
commit 02e4d5fac9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -206,6 +206,7 @@ class TableComponent extends React.Component {
<div className="field mb-2">
<label className="form-label">{this.props.t('widget.Table.overflow', 'Overflow')}</label>
<SelectSearch
className={`${this.props.darkMode ? 'select-search-dark' : 'select-search'}`}
options={[
{ name: 'Wrap', value: 'wrap' },
{ name: 'Scroll', value: 'scroll' },