File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
packages/console/src/components/Executions Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { makeStyles, Theme } from '@material-ui/core/styles';
3
3
import CachedOutlined from '@material-ui/icons/CachedOutlined' ;
4
4
import ErrorOutlined from '@material-ui/icons/ErrorOutlined' ;
5
5
import InfoOutlined from '@material-ui/icons/InfoOutlined' ;
6
+ import SmsFailedOutlinedIcon from '@material-ui/icons/SmsFailedOutlined' ;
6
7
import classnames from 'classnames' ;
7
8
import { assertNever } from 'common/utils' ;
8
9
import { PublishedWithChangesOutlined } from 'components/common/PublishedWithChanges' ;
@@ -37,10 +38,14 @@ const NodeExecutionCacheStatusIcon: React.ComponentType<
37
38
}
38
39
> = React . forwardRef ( ( { status, ...props } , ref ) => {
39
40
switch ( status ) {
40
- case CatalogCacheStatus . CACHE_DISABLED :
41
+ case CatalogCacheStatus . CACHE_DISABLED : {
42
+ return < InfoOutlined { ...props } ref = { ref } data-testid = "cache-icon" /> ;
43
+ }
41
44
case CatalogCacheStatus . CACHE_MISS :
42
45
case CatalogCacheStatus . CACHE_SKIPPED : {
43
- return < InfoOutlined { ...props } ref = { ref } data-testid = "cache-icon" /> ;
46
+ return (
47
+ < SmsFailedOutlinedIcon { ...props } ref = { ref } data-testid = "cache-icon" />
48
+ ) ;
44
49
}
45
50
case CatalogCacheStatus . CACHE_HIT : {
46
51
return < CachedOutlined { ...props } ref = { ref } data-testid = "cache-icon" /> ;
You can’t perform that action at this time.
0 commit comments