Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.7]

### Refactor

- Improve package.json.

## [1.6.6]

### Fixed

- Fix bug get Form instance in `Form.ItemControl` component.

## [1.6.5]

### Fixed

- Improve DashboardTemplate component part 2.

## [1.6.4]

### Fixed
Expand Down
1 change: 1 addition & 0 deletions src/molecules/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export * from './Pagination';
export * from './Popconfirm';
export * from './Popover';
export * from './Radio';
export * from './Result';
export * from './Select';
export * from './Skeleton';
export * from './Slider';
Expand Down
8 changes: 5 additions & 3 deletions src/templates/DashboardTemplate/Header/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ export const DashboardTemplateHeaderStyles = styled(Layout.Header, {
),
})<Omit<RdDashboardTemplateHeaderProps, 'render'>>`
${({ fixedOnScroll }) => {
return fixedOnScroll &&
return (
fixedOnScroll &&
css`
position: sticky;
top: 0;
z-index: ${getAliasToken('DashboardTemplate', 'zIndexBase') ?? 1050};
`;
z-index: ${getAliasToken('DashboardTemplate', 'zIndexBase')};
`
);
}}
`;