aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/LinkEditor.tsx
diff options
context:
space:
mode:
authorHannah Chow <hannah_chow@brown.edu>2019-03-10 22:58:36 -0400
committerHannah Chow <hannah_chow@brown.edu>2019-03-10 22:58:36 -0400
commitd9a45fe0ed67ee5807a5c5e99079f99b88776b51 (patch)
tree43908dc4e570b046f249502675c6120352049ba9 /src/client/views/nodes/LinkEditor.tsx
parentce0d749c291609b7acca6db490bfcc131cf3996d (diff)
fixed pdf bug
Diffstat (limited to 'src/client/views/nodes/LinkEditor.tsx')
-rw-r--r--src/client/views/nodes/LinkEditor.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/nodes/LinkEditor.tsx b/src/client/views/nodes/LinkEditor.tsx
index 38cfef239..405574598 100644
--- a/src/client/views/nodes/LinkEditor.tsx
+++ b/src/client/views/nodes/LinkEditor.tsx
@@ -13,6 +13,7 @@ import { LinkBox } from "./LinkBox";
interface Props {
linkBox: LinkBox;
+ linkDoc: Document;
}
@observer
@@ -30,6 +31,7 @@ export class LinkEditor extends React.Component<Props> {
<div className="edit-container">
<input className="name-input" type="text" placeholder="Name..."></input>
<input className="description-input" type="text" placeholder="Description"></input>
+ <div className="save-button"></div>
</div>
)