Skip to content

Commit f0f763a

Browse files
committed
fix prettier issues
1 parent 344746a commit f0f763a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/ra-ui-materialui/src/list/datagrid/DatagridConfigurable.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ export const DatagridConfigurable = ({
7272
child.props.label && typeof child.props.label === 'string' // this list is serializable, so we can't store ReactElement in it
7373
? child.props.label
7474
: child.props.source
75-
? // force the label to be the source
76-
undefined
77-
: // no source or label, generate a label
78-
translate('ra.configurable.Datagrid.unlabeled', {
79-
column: index,
80-
_: `Unlabeled column #%{column}`,
81-
}),
75+
? // force the label to be the source
76+
undefined
77+
: // no source or label, generate a label
78+
translate('ra.configurable.Datagrid.unlabeled', {
79+
column: index,
80+
_: `Unlabeled column #%{column}`,
81+
}),
8282
}));
8383
const hasChanged = newAvailableColumns.some(column => {
8484
const availableColumn = availableColumns.find(

0 commit comments

Comments
 (0)