X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/58db72fee358d5987139a1b8526c0ca873e07dbf..0ee5873d56416cf0c102f9e8930322fa80762f41:/src/views/collection-content-address-panel/collection-content-address-panel.tsx diff --git a/src/views/collection-content-address-panel/collection-content-address-panel.tsx b/src/views/collection-content-address-panel/collection-content-address-panel.tsx index f1278049..ea23ce51 100644 --- a/src/views/collection-content-address-panel/collection-content-address-panel.tsx +++ b/src/views/collection-content-address-panel/collection-content-address-panel.tsx @@ -12,7 +12,6 @@ import { import { CollectionIcon } from 'components/icon/icon'; import { ArvadosTheme } from 'common/custom-theme'; import { BackIcon } from 'components/icon/icon'; -import { DataTableDefaultView } from 'components/data-table-default-view/data-table-default-view'; import { COLLECTIONS_CONTENT_ADDRESS_PANEL_ID } from 'store/collections-content-address-panel/collections-content-address-panel-actions'; import { DataExplorer } from "views-components/data-explorer/data-explorer"; import { Dispatch } from 'redux'; @@ -41,13 +40,13 @@ type CssRules = 'backLink' | 'backIcon' | 'root' | 'content'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ backLink: { - fontSize: '14px', + fontSize: '12px', fontWeight: 600, display: 'flex', alignItems: 'center', padding: theme.spacing.unit, marginBottom: theme.spacing.unit, - color: theme.palette.grey["700"], + color: theme.palette.grey["500"], }, backIcon: { marginRight: theme.spacing.unit @@ -68,12 +67,12 @@ enum CollectionContentAddressPanelColumnNames { LAST_MODIFIED = "Last modified" } -export const collectionContentAddressPanelColumns: DataColumns = [ +export const collectionContentAddressPanelColumns: DataColumns = [ { name: CollectionContentAddressPanelColumnNames.COLLECTION_WITH_THIS_ADDRESS, selected: true, configurable: true, - sortDirection: SortDirection.NONE, + sort: {direction: SortDirection.NONE, field: "uuid"}, filters: createTree(), render: uuid => }, @@ -95,7 +94,7 @@ export const collectionContentAddressPanelColumns: DataColumns = [ name: CollectionContentAddressPanelColumnNames.LAST_MODIFIED, selected: true, configurable: true, - sortDirection: SortDirection.DESC, + sort: {direction: SortDirection.DESC, field: "modifiedAt"}, filters: createTree(), render: uuid => } @@ -165,12 +164,10 @@ export const CollectionsContentAddressPanel = withStyles(styles)( onContextMenu={this.props.onContextMenu(this.props.resources)} contextMenuColumn={true} title={`Content address: ${this.props.match.params.id}`} - dataTableDefaultView={ - - } /> - ; + defaultViewIcon={CollectionIcon} + defaultViewMessages={['Collections with this content address not found.']} /> + + ; } } )