diff options
| author | bobzel <zzzman@gmail.com> | 2020-07-31 17:55:39 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-07-31 17:55:39 -0400 |
| commit | 49ff32114387b5875e5cfb804a741caf24424612 (patch) | |
| tree | fbb7af8d7568bdef7919fb3dd4ecced700fdd069 /src/client/views/collections | |
| parent | 494129f2e5d673f11087ce0477feaa80e453dae4 (diff) | |
fixed dragging properties
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/PropertiesView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/PropertiesView.tsx b/src/client/views/collections/collectionFreeForm/PropertiesView.tsx index c187ad3b8..a3c9516e1 100644 --- a/src/client/views/collections/collectionFreeForm/PropertiesView.tsx +++ b/src/client/views/collections/collectionFreeForm/PropertiesView.tsx @@ -295,7 +295,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> { } sharingItem(name: string, effectiveAcl: symbol, permission?: string) { - return <div className="propertiesView-sharingTable-item"> + return <div className="propertiesView-sharingTable-item" key="name"> <div className="propertiesView-sharingTable-item-name" style={{ width: name !== "Me" ? "70px" : "80px" }}> {name} </div> {name !== "Me" ? this.notifyIcon : null} <div className="propertiesView-sharingTable-item-permission"> |
