diff --git a/.changeset/long-flies-battle.md b/.changeset/long-flies-battle.md
new file mode 100644
index 0000000000..d143658004
--- /dev/null
+++ b/.changeset/long-flies-battle.md
@@ -0,0 +1,5 @@
+---
+'@backstage/plugin-entity-feedback': patch
+---
+
+Added tooltip to like dislike buttons
diff --git a/plugins/entity-feedback/src/components/LikeDislikeButtons/LikeDislikeButtons.tsx b/plugins/entity-feedback/src/components/LikeDislikeButtons/LikeDislikeButtons.tsx
index 2d38e60ac2..718e32f357 100644
--- a/plugins/entity-feedback/src/components/LikeDislikeButtons/LikeDislikeButtons.tsx
+++ b/plugins/entity-feedback/src/components/LikeDislikeButtons/LikeDislikeButtons.tsx
@@ -24,6 +24,7 @@ import {
} from '@backstage/core-plugin-api';
import { useAsyncEntity } from '@backstage/plugin-catalog-react';
import { IconButton } from '@material-ui/core';
+import Tooltip from '@material-ui/core/Tooltip';
import ThumbDownIcon from '@material-ui/icons/ThumbDown';
import ThumbUpIcon from '@material-ui/icons/ThumbUp';
import ThumbDownOutlinedIcon from '@material-ui/icons/ThumbDownOutlined';
@@ -122,26 +123,30 @@ export const LikeDislikeButtons = (props: LikeDislikeButtonsProps) => {
return (
<>
- applyRating(FeedbackRatings.like)}
- >
- {rating === FeedbackRatings.like ? (
-
- ) : (
-
- )}
-
- applyRating(FeedbackRatings.dislike)}
- >
- {rating === FeedbackRatings.dislike ? (
-
- ) : (
-
- )}
-
+
+ applyRating(FeedbackRatings.like)}
+ >
+ {rating === FeedbackRatings.like ? (
+
+ ) : (
+
+ )}
+
+
+
+ applyRating(FeedbackRatings.dislike)}
+ >
+ {rating === FeedbackRatings.dislike ? (
+
+ ) : (
+
+ )}
+
+