We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3a465f commit 033010cCopy full SHA for 033010c
1 file changed
app/components/TransferColumns.tsx
@@ -206,9 +206,10 @@ const TransferColumns = React.memo(() => {
206
<div style={{ height: '500px', width: '100%' }}>
207
208
<DataGrid
209
- style={currentStyle }
+ // style={currentStyle }
210
rows={rows}
211
columns={columns}
212
+ style={currentStyle}
213
slots={{ toolbar: GridToolbar }}
214
slotProps={{
215
toolbar: {
@@ -230,7 +231,8 @@ const TransferColumns = React.memo(() => {
230
231
232
</div>
233
{selectedRows.length > 0 && (
- <h3 style={{ marginTop: '20px', color: currentStyle.color }}>Selected Rows:</h3>
234
+ <h3 style={{ marginTop: '20px', color: 'currentStyle',}}
235
+ >Selected Rows:</h3>
236
)}
237
<ol id="selectedRows">{selectedRows}</ol>
238
0 commit comments