Skip to content

Commit

Permalink
feat(dataset): SJIP-775 change header type (Ferlab-Ste-Justine#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
AltefrohneGaelle authored Apr 8, 2024
1 parent dadaa8c commit d8c5c0d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion packages/ui/Release.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
### 9.10.1 2024-04-5
### 9.11.1 2024-04-8
- feat: SJIP-775 change header dataset entity type

### 9.11.0 2024-04-5
- fix: SJIP-773 add excludeZeroValue

### 9.10.1 2024-04-4
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ferlab/ui",
"version": "9.11.0",
"version": "9.11.1",
"description": "Core components for scientific research data portals",
"publishConfig": {
"access": "public"
Expand Down
6 changes: 3 additions & 3 deletions packages/ui/src/pages/EntityPage/EntityDataset/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import React, { ReactNode } from 'react';
import { Card, Descriptions, Typography } from 'antd';
import cx from 'classnames';

Expand Down Expand Up @@ -42,8 +42,8 @@ export interface IEntityDatasetProps {
descriptions: IEntityDescriptionsItem[];
loading: boolean;
title?: string;
titleExtra?: React.ReactNode[];
header: string;
titleExtra?: ReactNode[];
header: ReactNode;
participant_count: number;
file_count: number;
dictionnary?: {
Expand Down

0 comments on commit d8c5c0d

Please sign in to comment.