From f6ee7303582f491e7a0447fe1dc3bfe97938b097 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 9 Apr 2020 11:09:32 -0700 Subject: [PATCH 1/3] first commit --- src/view/components/Dropdown.tsx | 2 +- src/view/components/toolbar/ToolBar.tsx | 2 +- src/view/translations/en.json | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/view/components/Dropdown.tsx b/src/view/components/Dropdown.tsx index 58b4b19a4..751c3554c 100644 --- a/src/view/components/Dropdown.tsx +++ b/src/view/components/Dropdown.tsx @@ -16,7 +16,7 @@ export const Dropdown: React.FC = props => { diff --git a/src/view/components/toolbar/ToolBar.tsx b/src/view/components/toolbar/ToolBar.tsx index 1390e7276..a2a3ee1a2 100644 --- a/src/view/components/toolbar/ToolBar.tsx +++ b/src/view/components/toolbar/ToolBar.tsx @@ -194,7 +194,7 @@ class ToolBar extends React.Component { {this.state.isDescriptionVisible && ( Date: Thu, 9 Apr 2020 11:14:10 -0700 Subject: [PATCH 2/3] added period to clue led description sentence --- src/view/translations/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/translations/en.json b/src/view/translations/en.json index ac49c3893..06efe9fc3 100644 --- a/src/view/translations/en.json +++ b/src/view/translations/en.json @@ -70,7 +70,7 @@ "toolbar-clue-accelerometer-sensor.description": " The 3-axis accelerometer, can tell you which direction is down towards the Earth (by measuring gravity) or how fast the board is accelerating in 3D space.", "toolbar-clue-accelerometer-sensor.tryItDescription": "Set the acceleration with the sliders.", "toolbar-clue-led.title": "Neopixel", - "toolbar-clue-led.description": "The CLUE has one full RGB LED (NeoPixel) on the back of the device", + "toolbar-clue-led.description": "The CLUE has one full RGB LED (NeoPixel) on the back of the device.", "toolbar-clue-led.tryItDescription": "Run your code and see the cool effects on the simulator!", "toolbar-clue-a-b-push.title": "Buttons", From 60bb0db7c7d70c760e0dbd83a45cb35375eca15d Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 9 Apr 2020 11:17:05 -0700 Subject: [PATCH 3/3] added name to dropdown as well as title --- src/view/components/Dropdown.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/view/components/Dropdown.tsx b/src/view/components/Dropdown.tsx index 751c3554c..e5506383a 100644 --- a/src/view/components/Dropdown.tsx +++ b/src/view/components/Dropdown.tsx @@ -17,6 +17,7 @@ export const Dropdown: React.FC = props => { className="dropdown" onChange={props.onSelect} title={props.name} + name={props.name} > {renderOptions(props.options)}