File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -338,8 +338,12 @@ export function ResourcePicker<T>({
338338 ( row ) => {
339339 const isChecked = selectedIds . has ( config . getItemId ( row ) ) ;
340340 return (
341- < Text color = { isChecked ? colors . success : colors . textDim } >
342- { isChecked ? figures . checkboxOn : figures . checkboxOff } { " " }
341+ < Text
342+ color = { isChecked ? colors . success : colors . textDim }
343+ >
344+ { isChecked
345+ ? figures . checkboxOn
346+ : figures . checkboxOff } { " " }
343347 </ Text >
344348 ) ;
345349 } ,
@@ -387,7 +391,9 @@ export function ResourcePicker<T>({
387391 { /* Show checkbox for multi-select mode */ }
388392 { config . mode === "multi" && (
389393 < Text color = { isChecked ? colors . success : colors . textDim } >
390- { isChecked ? figures . checkboxOn : figures . checkboxOff } { " " }
394+ { isChecked
395+ ? figures . checkboxOn
396+ : figures . checkboxOff } { " " }
391397 </ Text >
392398 ) }
393399 < Text
You can’t perform that action at this time.
0 commit comments