File tree Expand file tree Collapse file tree
frontend/public/components/data-view-poc Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ function useDataViewPodRow(
282282 columns : ( DataViewTh & { id ?: string } ) [ ] ,
283283) {
284284 const { t } = useTranslation ( ) ;
285- // We have to iterate over the redux state as the dw rows are not separate entities.
285+ // We have to iterate over the redux state as the data view rows are not separate entities.
286286 // The data is referenced by indexes
287287 // In a finished implementation, the data should combined within the state to avoid extra iteration
288288 const allCores = useSelector < RootState , [ number , number ] [ ] > ( ( { UI } ) => {
@@ -468,7 +468,7 @@ function useDataViewSort({
468468 return { sortBy, onSort } ;
469469}
470470
471- // Simple type guard for checking what type of DW column is used
471+ // Simple type guard for checking what type of data view column is used
472472function isDataViewConfigurableColumn (
473473 column : DataViewTh ,
474474) : column is {
@@ -824,7 +824,7 @@ const DataViewPodList = ({
824824} ;
825825
826826// props.data is mutating and can change the filters not to work
827- // Sow e have to wait for the data to be loaded as we have to memoize the filters themselves
827+ // So we have to wait for the data to be loaded as we have to memoize the filters themselves
828828const DataViewPodListWrapper = ( props : DataViewPodListProps ) => {
829829 if ( ! props . loaded ) {
830830 return null ;
You can’t perform that action at this time.
0 commit comments