diff --git a/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx b/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx index 3f181f86b..e51867ca8 100644 --- a/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx +++ b/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx @@ -377,6 +377,7 @@ export const QueryCopilotPromptbar: React.FC = ({ disabled={isGeneratingQuery || !userPrompt.trim()} style={{ marginLeft: 8 }} onClick={() => startGenerateQueryProcess()} + aria-label="Send" /> {isGeneratingQuery && } {showSamplePrompts && ( @@ -552,6 +553,7 @@ export const QueryCopilotPromptbar: React.FC = ({ id="likeBtn" style={{ marginLeft: 20 }} iconProps={{ iconName: likeQuery === true ? "LikeSolid" : "Like" }} + aria-label="Like" onClick={() => { setShowCallout(!likeQuery); setLikeQuery(!likeQuery); @@ -571,6 +573,7 @@ export const QueryCopilotPromptbar: React.FC = ({ setDislikeQuery(!dislikeQuery); setShowCallout(false); }} + aria-label="Dislike" />