-
-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Labels
Description
Prerequisites
- I have written a descriptive issue title
- I have searched existing issues to ensure the feature has not already been requested
🚀 Feature Proposal
When you select a row and copy it, the app only copies it as CSV. It would be nice to also have the option to copy it as JSON.
Motivation
JSON is useful when working with APIs or scripts. If you need to paste a row into a REST client or anything that expects JSON, you have to manually convert the CSV output. A JSON copy option would save that extra step.
Example
Right now copying a row gives:
id,name,email
1,John Doe,john@example.com
It would be great to also get:
{"id": 1, "name": "John Doe", "email": "john@example.com"}Could be a right-click option like "Copy as JSON" or a setting to pick the default format.
Reactions are currently unavailable