1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

some minor UI fixes (#10475)

This commit is contained in:
Prabhat Khera 2023-10-16 14:08:55 +13:00 committed by GitHub
parent 7840e0bfe1
commit bcb3f918d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 32 deletions

View file

@ -1,7 +1,7 @@
import { useMemo } from 'react';
import { useCurrentUser } from '@/react/hooks/useUser';
import helm from '@/assets/ico/helm.svg?c';
import helm from '@/assets/ico/vendor/helm.svg?c';
import { Datatable } from '@@/datatables';
import { createPersistedStore } from '@@/datatables/types';
@ -41,7 +41,7 @@ export function HelmRepositoryDatatable() {
return (
<Datatable
getRowId={(row) => row.URL}
getRowId={(row) => String(row.Id)}
dataset={helmRepos}
settingsManager={tableState}
columns={columns}