From f8e6561c09abfe180734dde0a931e8cff7e2bce1 Mon Sep 17 00:00:00 2001 From: Greg Fodor <gfodor@gmail.com> Date: Tue, 7 Aug 2018 17:47:58 +0000 Subject: [PATCH] Add period to copy and separate instructions more nicely --- src/react-components/create-object-dialog.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/react-components/create-object-dialog.js b/src/react-components/create-object-dialog.js index ebf9a5cba..6b314cfa7 100644 --- a/src/react-components/create-object-dialog.js +++ b/src/react-components/create-object-dialog.js @@ -14,14 +14,13 @@ const attributionHostnames = { const DEFAULT_OBJECT_URL = "https://asset-bundles-prod.reticulum.io/interactables/Ducky/DuckyMesh-438ff8e022.gltf"; const isMobile = AFRAME.utils.device.isMobile(); -const instructions = "Paste a URL or upload a file"; +const instructions = "Paste a URL or upload a file."; const desktopTips = "Tip: You can paste links directly into Hubs with Ctrl+V"; const mobileInstructions = <div>{instructions}</div>; const desktopInstructions = ( <div> - {instructions} - <br /> - {desktopTips} + <p>{instructions}</p> + <p>{desktopTips}</p> </div> ); -- GitLab