aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx
diff options
context:
space:
mode:
authoralinayejin <alina_kim@brown.edu>2023-12-06 23:35:32 -0500
committeralinayejin <alina_kim@brown.edu>2023-12-06 23:35:32 -0500
commit173df6c015790e00edd9c9305b1b520b31dc3134 (patch)
treed878767cf54ed60311b0984bd7f8b8872c03426d /src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx
parentd39b3633f3ae1864c89be47b358624e059342d66 (diff)
parent7548211c816af70f6c5dfe92897f82527de3986d (diff)
Merge branch 'info-ui' of https://github.com/brown-dash/Dash-Web into info-ui
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx')
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx
index e5933d47b..8b2b32581 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx
@@ -33,7 +33,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm
}
@observable currState: infoState;
state0: infoState = {
- Message: 'Click anywhere and begin typing to create your first text document.',
+ Message: 'Click to create Object',
Arcs: [
{
events: () => this.props.Freeform.childDocs.slice(),
@@ -45,7 +45,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm
],
};
state1: infoState = {
- Message: 'Hello world! Try creating a second document.',
+ Message: 'Create a second doc',
Arcs: [
{
events: () => this.props.Freeform.childDocs.slice(),
@@ -57,7 +57,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm
],
};
state2: infoState = {
- Message: 'To create a link between them, click the link icon on both documents.',
+ Message: 'Create a link',
Arcs: [
{
events: () => ({ links: this.first_doc && LinkManager.Instance.getAllDirectLinks(this.first_doc), docs: this.props.Freeform.childDocs.slice() }),
@@ -72,7 +72,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm
};
state3: infoState = {
- Message: 'You made your first link! You can view your links by selecting the blue dot.',
+ Message: 'View links',
Arcs: [
{
events: () => ({ links: this.first_doc && LinkManager.Instance.getAllDirectLinks(this.first_doc), viewingLinks: DocumentLinksButton.LinkEditorDocView }),
@@ -85,7 +85,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm
],
};
state4: infoState = {
- Message: 'Great work. You are now ready to create your own hypermedia world.',
+ Message: 'You did it!',
Arcs: [
{
events: () => false,