Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
siarhei-epam committed Oct 21, 2024
2 parents 2e7ec6b + a1d716b commit 7190251
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions app/src/common/AppHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export function AppHeader() {

const renderDirectionSwitcher = () => {
return (
<FlexRow padding="12">
<FlexRow padding="12" key="RTL-switcher">
<MultiSwitch value={ direction } onValueChange={ changeContentDirection } items={ [{ id: 'ltr', caption: 'LTR' }, { id: 'rtl', caption: 'RTL' }] } />
</FlexRow>
);
Expand Down Expand Up @@ -233,13 +233,14 @@ export function AppHeader() {
<DropdownMenuButton caption="EPAM Team (employee only)" href="https://www.figma.com/design/M5Njgc6SQJ3TPUccp5XHQx/UUI-Components?m=auto&t=qiBDEE9slwMV4paI-6" target="_blank" />
</DropdownMenuBody>
) }
key="figma-source"
/>
),
},
{
id: 'git',
priority: 4,
render: () => <MainMenuButton icon={ GitIcon } href={ GIT_LINK } target="_blank" cx={ cx(css.icon) } />,
render: () => <MainMenuButton icon={ GitIcon } href={ GIT_LINK } target="_blank" cx={ cx(css.icon) } key="github-link" />,
},
{
id: 'gitStar',
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

**What's Fixed**
* [Text]: fixed bug when passed rawProps override Text internal styles
* [Modals]: fixed value for default modal width

# 5.10.1 - 16.10.2024

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ exports[`Modals should be rendered correctly with minimum props 1`] = `
Object {
"height": "auto",
"maxHeight": "80dvh",
"width": "420",
"width": 420,
}
}
>
Expand Down
2 changes: 1 addition & 1 deletion uui/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export const settings: Settings = {
modal: {
window: {
defaults: {
width: '420',
width: 420,
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion uui/settings.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ interface TabButtonSizes {
}

interface ModalWindowDefaultSizes {
width: string;
width: number;
}

interface ModalWindowSizes {
Expand Down

0 comments on commit 7190251

Please sign in to comment.