diff --git a/src/components/poll.jsx b/src/components/poll.jsx
index f40b5e6c..1095a5dc 100644
--- a/src/components/poll.jsx
+++ b/src/components/poll.jsx
@@ -199,6 +199,7 @@ export default function Poll({
                 setUIState('default');
               })();
             }}
+            title="Refresh"
           >
             <Icon icon="refresh" alt="Refresh" />
           </button>
@@ -212,6 +213,7 @@ export default function Poll({
               e.preventDefault();
               setShowResults(!showResults);
             }}
+            title={showResults ? 'Hide results' : 'Show results'}
           >
             <Icon
               icon={showResults ? 'eye-open' : 'eye-close'}