Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix: Copy-to-clipboard button provides no visual feedback to users #74

Open

Description

🐛 Bug Description
When clicking the Copy button on any tool's output area, the text is copied to the clipboard successfully, but there is no visual feedback to confirm the action. The user has no way to know if the copy worked or failed.

Steps to Reproduce
Go to any tool (e.g., Random Number Generator)
Generate some output
Click the Copy button (clipboard icon in the top-right of the output area)
Expected: A visual confirmation like "Copied!" text, a checkmark icon, or a toast notification
Actual: Nothing happens visually — the copy works silently in the background

`Current Code

const copyAll = async () => {
try {
await navigator.clipboard.writeText(output);
// No visual feedback here
} catch (err) {
console.error("Failed to copy text: ", err);
// Error only logged to console, user sees nothing
}
};`

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions

        AltStyle によって変換されたページ (->オリジナル) /