diff --git a/public/app/features/explore/QueryLibrary/QueryTemplatesTable/QueryDescriptionCell.tsx b/public/app/features/explore/QueryLibrary/QueryTemplatesTable/QueryDescriptionCell.tsx
index bb87eabc1da..7d44fe5a634 100644
--- a/public/app/features/explore/QueryLibrary/QueryTemplatesTable/QueryDescriptionCell.tsx
+++ b/public/app/features/explore/QueryLibrary/QueryTemplatesTable/QueryDescriptionCell.tsx
@@ -1,7 +1,7 @@
import { cx } from '@emotion/css';
import { CellProps } from 'react-table';
-import { Spinner } from '@grafana/ui';
+import { Spinner, Tooltip } from '@grafana/ui';
import { useDatasource } from '../utils/useDatasource';
@@ -20,6 +20,7 @@ export function QueryDescriptionCell(props: CellProps
{datasourceApi?.getQueryDisplayText?.(query)}
+{queryDisplayText}
+{description}
);