Skip to content

Commit c5675c0

Browse files
authored
Merge pull request #3770 from project-koku/release_prod-stable.4311
Deployment commit for prod-stable
2 parents fd02704 + b53d230 commit c5675c0

File tree

4 files changed

+108
-91
lines changed

4 files changed

+108
-91
lines changed

fec.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ module.exports = {
5959
* Package can be re-enabled for sharing once chrome starts providing global routing package to all applications
6060
*/
6161
// exclude: ['react-router-dom'],
62+
exclude: ['axios'], // Setting the base URL affects Cost Management APIs in OCM, when navigating between apps
6263
exposes: {
6364
'./RootApp': path.resolve(__dirname, './src/appEntry.tsx'),
6465
},

package-lock.json

+91-76
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"@redhat-cloud-services/frontend-components": "^4.2.5",
6161
"@redhat-cloud-services/frontend-components-notifications": "^4.1.0",
6262
"@redhat-cloud-services/frontend-components-translations": "^3.2.7",
63-
"@redhat-cloud-services/frontend-components-utilities": "^4.0.9",
63+
"@redhat-cloud-services/frontend-components-utilities": "^4.0.10",
6464
"@redhat-cloud-services/rbac-client": "^1.3.3",
6565
"@reduxjs/toolkit": "^2.2.3",
6666
"@unleash/proxy-client-react": "^4.2.2",
@@ -71,7 +71,7 @@
7171
"qs": "^6.12.0",
7272
"react": "^18.2.0",
7373
"react-dom": "^18.2.0",
74-
"react-intl": "^6.6.4",
74+
"react-intl": "^6.6.5",
7575
"react-redux": "^9.1.0",
7676
"react-router-dom": "^6.22.3",
7777
"redux": "^5.0.1",
@@ -90,20 +90,20 @@
9090
"@swc/core": "1.3.105",
9191
"@swc/jest": "^0.2.36",
9292
"@testing-library/jest-dom": "^6.4.2",
93-
"@testing-library/react": "^14.2.2",
93+
"@testing-library/react": "^14.3.0",
9494
"@testing-library/user-event": "^14.5.2",
9595
"@types/jest": "^29.5.12",
9696
"@types/qs": "^6.9.14",
97-
"@types/react": "^18.2.74",
97+
"@types/react": "^18.2.75",
9898
"@types/react-dom": "^18.2.24",
9999
"@types/react-redux": "^7.1.33",
100100
"@types/react-router-dom": "^5.3.3",
101-
"@typescript-eslint/eslint-plugin": "^7.5.0",
102-
"@typescript-eslint/parser": "^7.5.0",
101+
"@typescript-eslint/eslint-plugin": "^7.6.0",
102+
"@typescript-eslint/parser": "^7.6.0",
103103
"aphrodite": "^2.4.0",
104104
"copy-webpack-plugin": "^12.0.2",
105105
"eslint": "^8.57.0",
106-
"eslint-plugin-formatjs": "^4.12.2",
106+
"eslint-plugin-formatjs": "^4.13.0",
107107
"eslint-plugin-jest-dom": "^5.2.0",
108108
"eslint-plugin-jsdoc": "^48.2.3",
109109
"eslint-plugin-markdown": "^4.0.1",

src/routes/details/components/breakdown/breakdownHeader.tsx

+9-8
Original file line numberDiff line numberDiff line change
@@ -166,14 +166,15 @@ class BreakdownHeader extends React.Component<BreakdownHeaderProps, any> {
166166
<Flex justifyContent={{ default: 'justifyContentSpaceBetween' }} style={styles.perspectiveContainer}>
167167
<FlexItem>
168168
<Flex direction={{ default: 'column' }}>
169-
{description && (
170-
<FlexItem style={styles.description}>
171-
{description}
172-
{clusterInfoComponent && isClusterInfoToggleEnabled ? (
173-
<span style={!description ? styles.clusterInfoContainer : undefined}>{clusterInfoComponent}</span>
174-
) : null}
175-
</FlexItem>
176-
)}
169+
{description ||
170+
(clusterInfoComponent && isClusterInfoToggleEnabled && (
171+
<FlexItem style={styles.description}>
172+
{description}
173+
{clusterInfoComponent && isClusterInfoToggleEnabled ? (
174+
<span style={!description ? styles.clusterInfoContainer : undefined}>{clusterInfoComponent}</span>
175+
) : null}
176+
</FlexItem>
177+
))}
177178
{dataDetailsComponent && isClusterInfoToggleEnabled ? <FlexItem>{dataDetailsComponent}</FlexItem> : null}
178179
{showCostDistribution && (
179180
<FlexItem style={styles.costDistribution}>

0 commit comments

Comments
 (0)