File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,6 @@ const HealthItem = ({
121
121
// Right placement to avoid Z index issues between left sidebar and tooltip or out of screen tooltip displays
122
122
placement = "top"
123
123
overlayStyle = { {
124
- // em sizing to handle font-size change on large screens
125
124
width : '20rem' ,
126
125
height : '100%' ,
127
126
} }
@@ -145,8 +144,8 @@ const HealthItem = ({
145
144
>
146
145
< div
147
146
onClick = { ( ) => {
148
- history . push ( '/alerts' ) ;
149
147
openLink ( alertView ) ;
148
+ history . replace ( '/alerts' ) ;
150
149
} }
151
150
data-testid = "alert-link"
152
151
>
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ module.exports = (env) => ({
29
29
hints : 'error' ,
30
30
// ~732 KiB for production
31
31
// ~4.06 MiB for development because flow increase the size of assets.
32
- maxAssetSize : process . env . NODE_ENV === 'production' ? 750000 : 5000000 ,
32
+ maxAssetSize : process . env . NODE_ENV === 'production' ? 750000 : 100000000 ,
33
33
assetFilter : ( assetFilename ) => {
34
34
return (
35
35
! assetFilename . endsWith ( '.map.gz' ) && assetFilename . endsWith ( '.gz' )
You can’t perform that action at this time.
0 commit comments