Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/components/curl.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default class Curl extends React.Component {
<div className="curl-command">
<h4>Curl</h4>
<div className="copy-to-clipboard">
<CopyToClipboard text={curl}><button/></CopyToClipboard>
<CopyToClipboard text={curl}><button aria-label="Copy cURL command to clipboard"/></CopyToClipboard>
</div>
<div>
<SyntaxHighlighter
Expand Down
2 changes: 1 addition & 1 deletion src/core/plugins/request-snippets/request-snippets.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const RequestSnippets = ({ request, requestSnippetsSelectors, getComponent }) =>
</div>
<div className="copy-to-clipboard">
<CopyToClipboard text={snippet}>
<button />
<button aria-label="Copy code snippet to clipboard" />
</CopyToClipboard>
</div>
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const HighlightCode = ({
{canCopy && (
<div className="copy-to-clipboard">
<CopyToClipboard text={children}>
<button />
<button aria-label="Copy to clipboard" />
</CopyToClipboard>
</div>
)}
Expand Down