File tree Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -263,7 +263,6 @@ class JoeSessionCommand extends Component {
263
263
const openVizDialog = showFlameGraph || ( externalVisualization &&
264
264
externalVisualization . url && externalVisualization . url . length > 0 ) ;
265
265
const title = `Command #${ commandId } (${ data . command } ) from session #${ sessionId } ` ;
266
- const recommends = data . recommends ;
267
266
268
267
let shareUrlButton = (
269
268
< Button
@@ -398,9 +397,6 @@ class JoeSessionCommand extends Component {
398
397
< FormattedText value = { data . planText } />
399
398
</ TabPanel >
400
399
401
- < h4 > Recommendations:</ h4 >
402
- < FormattedText value = { recommends } />
403
-
404
400
< h4 > Statistics:</ h4 >
405
401
< FormattedText value = { data . stats . trim ( ) } />
406
402
Original file line number Diff line number Diff line change @@ -1037,7 +1037,6 @@ const Store = Reflux.createStore({
1037
1037
planText : data . plan_text ,
1038
1038
planExecText : data . plan_execution_text ,
1039
1039
planExecJson : data . plan_execution_json ,
1040
- recommends : data . recommendations ,
1041
1040
stats : data . stats ,
1042
1041
error : data . error ,
1043
1042
queryLocks : data . query_locks || '' ,
@@ -1051,11 +1050,6 @@ const Store = Reflux.createStore({
1051
1050
username : data . username
1052
1051
} ;
1053
1052
1054
- command . recommends = command . recommends && command . recommends . split (
1055
- ':white_check_mark:' ) . join ( '✅' ) ;
1056
- command . recommends = command . recommends &&
1057
- command . recommends . split ( ':exclamation:' ) . join ( '❗️' ) ;
1058
-
1059
1053
this . data . command . data = command ;
1060
1054
this . data . command . isProcessed = true ;
1061
1055
} else {
You can’t perform that action at this time.
0 commit comments