Selecting and coping data out of UI.
Text selection leaves a lot to be desired currently.

- Can't select the id to copy it from the row. Would be nice to have the copy button like on the docs for the id column.
- Can't select any of the properties or values when you expand a row into it's object. Again, would be sick to have the copy button to copy the object to json.
@jaclarke James, let's take a look at this.
Also need to improve text selection here. Can't select anything.

After looking at the css for a bit, it looks like .app_app has user-select: none; on it. I think this is a bad move. Users want to select things. I get disabling select on buttons so that you don't select the button text. This top of dom blocking of text selection is user hostile.
The copy buttons here are great, but they are not a substitute for selecting text. Has to be both and.
I greatly appreciate this small change. Though, in the way it was introduced on this pull request make buttons inside the interface be on a selected state when clicking on them.
On Chrome v103, MacOS 12.4, when creating a new entry that has a boolean column, when clicking on either "true" or "false" the button becomes selected for example.
Ya I could probably update the pr to block selection on buttons.
Came here for this issue. I constantly find myself disabling the user-select: none.
Right now I find myself wanting to select text in
-
the REPL history like @izakfilmalter said
-
The data explorer expansion

-
the changes review modal

But it probably should be enabled everywhere 😃
We're working on enabling copying in the UI. We'll likely backport the feature partially to 2.x.