jesperct commented on code in PR #41912:
URL: https://github.com/apache/superset/pull/41912#discussion_r3614305818


##########
superset-frontend/src/features/home/SavedQueries.tsx:
##########
@@ -297,11 +298,12 @@ export const SavedQueries = ({
       {queries.length > 0 ? (
         <CardContainer showThumbnails={showThumbnails}>
           {queries.map(q => (
-            <CardStyles key={q.id}>
+            <CardStyles
+              key={q.id}
+              onClick={() => history.push(`/sqllab?savedQueryId=${q.id}`)}

Review Comment:
   Handled in 7e5d662177. The wrapper now exposes button semantics with an 
accessible name and activates on Enter or Space, and keys coming from controls 
inside the card are left alone so the kebab menu still opens.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to