diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index c94d013a76..180a0eb44b 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -4,6 +4,7 @@ ### 1.2.0 Fixes +- `[About]` Removed mobile info from about page. ([#8502](https://github.com/infor-design/enterprise/issues/8502)) - `[PopupMenu]` Fix popupmenu truncation bug for menu items with shortcuts. ([#2250](https://github.com/infor-design/enterprise-wc/issues/2250)) - `[Popupmenu]` Changed the `position-style` default to `fixed` this causes better placement in scroll containers. ([#2289](https://github.com/infor-design/enterprise-wc/issues/2289)) - `[Toolbar]` Converted toolbar tests to playwright. ([#1984](https://github.com/infor-design/enterprise-wc/issues/1984)) diff --git a/src/components/ids-about/demos/standalone-css.html b/src/components/ids-about/demos/standalone-css.html index 3844b61c3d..b575b13272 100644 --- a/src/components/ids-about/demos/standalone-css.html +++ b/src/components/ids-about/demos/standalone-css.html @@ -18,15 +18,14 @@

IDS Enterprise

Controls Example Application Version No. XX

Fashionable components for fashionable applications.

-

Copyright © 2021 Infor. All rights reserved. The word and design marks set forth herein are trademarks and/or registered trademarks of Infor and/or its affiliates and subsidiaries. All other trademarks listed herein are the property of their respective owners www.infor.com.

+

Copyright © 2024 Infor. All rights reserved. The word and design marks set forth herein are trademarks and/or registered trademarks of Infor and/or its affiliates and subsidiaries. All other trademarks listed herein are the property of their respective owners www.infor.com.

Operating System : Mac OS X 10.15.7
Platform : MacIntel
- Mobile : false
Locale : en-US
Language : en
Browser : Chrome (92.0.4515.159)
Browser language : en-US
- IDS Version : 1.1.0

+ IDS Version : 1.2.0

diff --git a/src/components/ids-about/ids-about.scss b/src/components/ids-about/ids-about.scss index c26941a9d2..4b6b953d69 100644 --- a/src/components/ids-about/ids-about.scss +++ b/src/components/ids-about/ids-about.scss @@ -5,6 +5,14 @@ contain: content; } +.ids-modal { + &.ids-about { + .ids-modal-content.has-scrollbar { + overflow: auto; + } + } +} + .ids-about { .ids-modal-container { max-width: var(--ids-about-width-max); diff --git a/src/components/ids-about/ids-about.ts b/src/components/ids-about/ids-about.ts index 5a91a545ea..e2d08d81da 100644 --- a/src/components/ids-about/ids-about.ts +++ b/src/components/ids-about/ids-about.ts @@ -193,7 +193,6 @@ export default class IdsAbout extends Base { const specs = getSpecs(); const element = ` ${this.localeAPI?.translate('Platform')} : ${specs.platform}
- ${this.localeAPI?.translate('Mobile')} : ${specs.isMobile}
${this.localeAPI?.translate('Browser')} : ${specs.browser} (${specs.browserVersion})
${this.localeAPI?.translate('Locale')} : ${this.localeAPI?.locale.name || 'en-US'}
${this.localeAPI?.translate('Language')} : ${this.localeAPI?.language.name || 'en'}
diff --git a/tests/ids-about/ids-about.spec.ts b/tests/ids-about/ids-about.spec.ts index b13fc50d1e..4cb4ba4f1b 100644 --- a/tests/ids-about/ids-about.spec.ts +++ b/tests/ids-about/ids-about.spec.ts @@ -139,7 +139,6 @@ test.describe('IdsAbout tests', () => { // Check that the clipboard contains correct UUID expect(clipboardContent).toContain('IDS version'); expect(clipboardContent).toContain('Controls Example Application Version No. XX'); - expect(clipboardContent).toContain('Mobile'); expect(clipboardContent).toContain('Platform'); }); });