Copy ID of view

Summary: Now if you copy one of components in flipper in layout plugin, you will get not only name but also id in your clipboard

Reviewed By: priteshrnandgaonkar

Differential Revision: D16031628

fbshipit-source-id: e2c38182dea28719615609f3aa2c74e58749cce4
This commit is contained in:
Roman Gorbunov
2019-06-28 01:48:41 -07:00
committed by Facebook Github Bot
parent d6cb86e4c0
commit 30b7d4e9dd

View File

@@ -230,7 +230,7 @@ class ElementsRow extends PureComponent<ElementsRowProps, ElementsRowState> {
{
label: 'Copy',
click: () => {
clipboard.writeText(props.element.name);
clipboard.writeText(props.element.name + ' id=' + props.element.id);
},
},
{