File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed
static/app/views/discover/savedQuery Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -411,22 +411,23 @@ class SavedQueryButtonGroup extends PureComponent<Props, State> {
411
411
412
412
return (
413
413
< Fragment >
414
- < Button
415
- onClick = { this . handleUpdateQuery }
416
- data-test-id = "discover2-savedquery-button-update"
417
- disabled = { disabled || deprecatingTransactionsDataset }
418
- size = "sm"
419
- tooltipProps = { {
420
- isHoverable : true ,
421
- } }
414
+ < Tooltip
422
415
title = {
423
416
deprecatingTransactionsDataset &&
424
417
getTransactionDeprecationMessage ( tracesUrl )
425
418
}
419
+ isHoverable
426
420
>
427
- < IconUpdate />
428
- { t ( 'Save Changes' ) }
429
- </ Button >
421
+ < Button
422
+ onClick = { this . handleUpdateQuery }
423
+ data-test-id = "discover2-savedquery-button-update"
424
+ disabled = { disabled || deprecatingTransactionsDataset }
425
+ size = "sm"
426
+ >
427
+ < IconUpdate />
428
+ { t ( 'Save Changes' ) }
429
+ </ Button >
430
+ </ Tooltip >
430
431
{ this . renderButtonSaveAs ( disabled ) }
431
432
</ Fragment >
432
433
) ;
You can’t perform that action at this time.
0 commit comments