diff options
author | Mohammad Amoush <mohammad_amoush@brown.edu> | 2019-07-16 16:15:43 -0400 |
---|---|---|
committer | Mohammad Amoush <mohammad_amoush@brown.edu> | 2019-07-16 16:15:43 -0400 |
commit | e0bff91b9a700decf13ef5d6da439fa6f8868be7 (patch) | |
tree | 2fd3119d96074a0f7f1e304b5b77c28a00c8d1ea | |
parent | 7a9c7c74ce364e4b5ee4af35241870fea31c5cca (diff) |
parameter updated
-rw-r--r-- | src/client/views/presentationview/PresentationElement.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/views/presentationview/PresentationElement.tsx b/src/client/views/presentationview/PresentationElement.tsx index a3c5a969b..329630875 100644 --- a/src/client/views/presentationview/PresentationElement.tsx +++ b/src/client/views/presentationview/PresentationElement.tsx @@ -537,7 +537,7 @@ export default class PresentationElement extends React.Component<PresentationEle if (this.props.groupMappings.has(aboveDocGuid)) { this.protectOrderAndPush(aboveDocGuid, aboveDoc, droppedDoc); } else { - this.createNewGroup(aboveDoc, droppedDoc, aboveDocGuid, p); + this.createNewGroup(aboveDoc, droppedDoc, aboveDocGuid); } } else { let propsPresId = StrCast(this.props.document.presentId); @@ -553,7 +553,7 @@ export default class PresentationElement extends React.Component<PresentationEle this.protectOrderAndPush(propsDocGuid, this.props.document, droppedDoc); } else { - this.createNewGroup(this.props.document, droppedDoc, propsDocGuid, p); + this.createNewGroup(this.props.document, droppedDoc, propsDocGuid); } } @@ -573,7 +573,7 @@ export default class PresentationElement extends React.Component<PresentationEle let aboveGroupArray = this.props.groupMappings.get(aboveDocGuid)!; let propsDocPresId = StrCast(this.props.document.presentId); - this.halveGroupArray(aboveDoc, aboveGroupArray, droppedDoc, p, propsDocPresId); + this.halveGroupArray(aboveDoc, aboveGroupArray, droppedDoc, propsDocPresId); } else { let belowPresentId = StrCast(this.props.document.presentId); @@ -608,7 +608,7 @@ export default class PresentationElement extends React.Component<PresentationEle let propsGroupArray = this.props.groupMappings.get(propsDocGuid)!; - this.halveGroupArray(this.props.document, propsGroupArray, droppedDoc, p, belowDocGuid); + this.halveGroupArray(this.props.document, propsGroupArray, droppedDoc, belowDocGuid); } else { belowGroupArray.splice(belowGroupArray.indexOf(this.props.document), 1); |