Skip to content

Commit 6e2398f

Browse files
authored
Merge pull request #36 from 1Byte-Software/develop
Fix bugs
2 parents f26e8c0 + 7abeaa0 commit 6e2398f

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.6.7]
9+
10+
### Refactor
11+
12+
- Improve package.json.
13+
14+
## [1.6.6]
15+
16+
### Fixed
17+
18+
- Fix bug get Form instance in `Form.ItemControl` component.
19+
20+
## [1.6.5]
21+
22+
### Fixed
23+
24+
- Improve DashboardTemplate component part 2.
25+
826
## [1.6.4]
927

1028
### Fixed

src/molecules/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export * from './Pagination';
3131
export * from './Popconfirm';
3232
export * from './Popover';
3333
export * from './Radio';
34+
export * from './Result';
3435
export * from './Select';
3536
export * from './Skeleton';
3637
export * from './Slider';

src/templates/DashboardTemplate/Header/styles.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ export const DashboardTemplateHeaderStyles = styled(Layout.Header, {
1313
),
1414
})<Omit<RdDashboardTemplateHeaderProps, 'render'>>`
1515
${({ fixedOnScroll }) => {
16-
return fixedOnScroll &&
16+
return (
17+
fixedOnScroll &&
1718
css`
1819
position: sticky;
1920
top: 0;
20-
z-index: ${getAliasToken('DashboardTemplate', 'zIndexBase') ?? 1050};
21-
`;
21+
z-index: ${getAliasToken('DashboardTemplate', 'zIndexBase')};
22+
`
23+
);
2224
}}
2325
`;

0 commit comments

Comments
 (0)