aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
diff options
context:
space:
mode:
authorljungster <parkerljung@gmail.com>2022-02-15 16:37:13 -0500
committerljungster <parkerljung@gmail.com>2022-02-15 16:37:13 -0500
commit1cf7bf9b1a18728eb07950a3f4eafa793e830834 (patch)
tree22fc827df0a013787b01e8b4efcfa1ed01eb3c1c /src/client/views/collections/CollectionStackingViewFieldColumn.tsx
parentabab63f89344e5bbbf0731e81e3ab7ddb0942664 (diff)
parenta0365450297aa96bcc514114413fb983a34226f9 (diff)
merging
Diffstat (limited to 'src/client/views/collections/CollectionStackingViewFieldColumn.tsx')
-rw-r--r--src/client/views/collections/CollectionStackingViewFieldColumn.tsx16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/client/views/collections/CollectionStackingViewFieldColumn.tsx b/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
index 32424bdc8..1a27be764 100644
--- a/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
+++ b/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
@@ -315,22 +315,16 @@ export class CollectionStackingViewFieldColumn extends React.Component<CSVFieldC
//TODO: would be great if there was additional space beyond the frame, so that you can actually see your
// bottom note
<div key={`${heading}-add-document`} className="collectionStackingView-addDocumentButton"
- style={{ width: this.props.columnWidth / this.props.numGroupColumns, marginBottom: 10 }}>
+ style={{ width: this.props.columnWidth / this.props.numGroupColumns, marginBottom: 10, marginLeft: 25 }}>
<EditableView
GetValue={returnEmptyString}
SetValue={this.addNewTextDoc}
textCallback={this.textCallback}
- contents={"+ NEW"}
+ placeholder={"Type ':' for commands"}
+ contents={<FontAwesomeIcon icon={"plus"}/>}
toggle={this.toggleVisibility}
- menuCallback={this.menuCallback} />
- <EditableView
- GetValue={returnEmptyString}
- SetValue={this.addNewTextDoc}
- textCallback={this.textCallback}
- contents={"+ OLD"}
- toggle={this.toggleVisibility}
- menuCallback={this.menuCallback}
- showMenuOnLoad={true} />
+ menuCallback={this.menuCallback}
+ />
</div> : null}
</div>
}