Skip to content

Commit a3a6fd4

Browse files
Fix line lengths for linter
1 parent edb674c commit a3a6fd4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

modules/dataquery/jsx/definefields.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,9 @@ function DefineFields(props: {
376376
fieldList = (<div>
377377
<div style={{display: 'flex', flexWrap: 'wrap',
378378
justifyContent: 'space-between'}}>
379-
<h2>{t('{{columnName}} fields', {ns: 'dataquery', columnName: cname})}</h2>
379+
<h2>
380+
{t('{{columnName}} fields', {ns: 'dataquery', columnName: cname})}
381+
</h2>
380382
<div style={{marginTop: '1em',
381383
display: 'flex',
382384
flexWrap: 'nowrap',
@@ -445,7 +447,10 @@ function DefineFields(props: {
445447
<div>
446448
<button type="button" className="btn btn-primary"
447449
style={{marginBottom: 7}}
448-
onClick={props.onClearAll}>{t('Clear', {ns: 'loris'})}</button>
450+
onClick={
451+
props.onClearAll}>{t('Clear', {ns: 'loris'})
452+
}
453+
</button>
449454
</div>
450455
</div>
451456
<SelectedFieldList

0 commit comments

Comments
 (0)