Skip to content

Commit 27adc1e

Browse files
committed
Comment cleanup
1 parent e108f77 commit 27adc1e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

frontend/public/components/data-view-poc/DataViewPodList.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
472472
function 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
828828
const DataViewPodListWrapper = (props: DataViewPodListProps) => {
829829
if (!props.loaded) {
830830
return null;

0 commit comments

Comments
 (0)