diff --git a/ui/src/components/HealthItem.js b/ui/src/components/HealthItem.js
index 6f00f16650..e16a8005cd 100644
--- a/ui/src/components/HealthItem.js
+++ b/ui/src/components/HealthItem.js
@@ -121,7 +121,6 @@ const HealthItem = ({
// Right placement to avoid Z index issues between left sidebar and tooltip or out of screen tooltip displays
placement="top"
overlayStyle={{
- // em sizing to handle font-size change on large screens
width: '20rem',
height: '100%',
}}
@@ -145,8 +144,8 @@ const HealthItem = ({
>
{
- history.push('/alerts');
openLink(alertView);
+ history.replace('/alerts');
}}
data-testid="alert-link"
>
diff --git a/ui/webpack.common.js b/ui/webpack.common.js
index 6660e8a586..93ea196e97 100644
--- a/ui/webpack.common.js
+++ b/ui/webpack.common.js
@@ -29,7 +29,7 @@ module.exports = (env) => ({
hints: 'error',
// ~732 KiB for production
// ~4.06 MiB for development because flow increase the size of assets.
- maxAssetSize: process.env.NODE_ENV === 'production' ? 750000 : 5000000,
+ maxAssetSize: process.env.NODE_ENV === 'production' ? 750000 : 100000000,
assetFilter: (assetFilename) => {
return (
!assetFilename.endsWith('.map.gz') && assetFilename.endsWith('.gz')