Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d340c1b
showing tooltip on mouse enter & leave
sadakchap May 15, 2021
2d9d7a4
Merge branch 'master' of github.com:parse-community/parse-dashboard i…
sadakchap May 31, 2021
22a56bf
added new arrow svg
sadakchap May 31, 2021
ec3950d
showing arrow icon if cell has follow link value
sadakchap May 31, 2021
d792e34
Pill pointer, relation to follow link if selected
sadakchap May 31, 2021
e981e55
added bottom margin for Pill
sadakchap May 31, 2021
1c40561
following link even if cell is not selected on icon click
sadakchap May 31, 2021
f6c68f4
using existing arrow icon
sadakchap May 31, 2021
5bce427
removed arrow.svg file
sadakchap May 31, 2021
6edfa69
remove arrow outline
sadakchap May 31, 2021
5a60b83
removed Download & delete option from file Editor
sadakchap Jun 1, 2021
34c7b93
update Pill to download image on icon click
sadakchap Jun 1, 2021
d8b855c
update Browser cell file value
sadakchap Jun 1, 2021
ad6eba6
opening upload dialog on double click
sadakchap Jun 3, 2021
68b4462
File Editor on Edit Row dialog
sadakchap Jun 4, 2021
53bffcf
pill design update
sadakchap Jun 4, 2021
3b5d190
removing extra padding from pill
sadakchap Jun 7, 2021
6dd4df7
showing new pointer layout on Edit row dialog
sadakchap Jun 7, 2021
4e363e7
making input fields light blue
sadakchap Jul 27, 2021
b24aea3
added margin in new pill design
sadakchap Jul 27, 2021
7115f41
added undefined placeholder for edit row modal
sadakchap Jul 27, 2021
79eee26
center toggle Input
sadakchap Jul 27, 2021
16010c7
removed ccss comment
sadakchap Jul 28, 2021
c6429bc
Merge branch 'master' of github.com:parse-community/parse-dashboard i…
sadakchap Jul 28, 2021
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
10 changes: 10 additions & 0 deletions src/components/BrowserCell/BrowserCell.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,16 @@ export default class BrowserCell extends Component {
onSelect({ row, col });
setCopyableValue(hidden ? undefined : this.copyableValue);
}}
onMouseEnter={() => {
if (field === 'objectId') {
this.setState({ showTooltip: true });
}
}}
onMouseLeave={() => {
if (field === 'objectId') {
this.setState({ showTooltip: false });
}
}}
onDoubleClick={() => {
if (field === 'objectId' && onEditSelectedRow) {
onEditSelectedRow(true, value);
Expand Down