aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoralyssaf16 <alyssa_feinberg@brown.edu>2024-10-09 13:17:24 -0400
committeralyssaf16 <alyssa_feinberg@brown.edu>2024-10-09 13:17:24 -0400
commit9c80914b41b1b964938370c7a0db8a643b6af23f (patch)
treef17f8cf9908aea71c76e964e1f3dc9adb1c038aa /src
parent461253999837ddcab1c157117fa0931fd3aa5332 (diff)
comments
Diffstat (limited to 'src')
-rw-r--r--src/client/views/nodes/ComparisonBox.tsx10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/client/views/nodes/ComparisonBox.tsx b/src/client/views/nodes/ComparisonBox.tsx
index 09f35e7ab..7a9474f08 100644
--- a/src/client/views/nodes/ComparisonBox.tsx
+++ b/src/client/views/nodes/ComparisonBox.tsx
@@ -800,16 +800,10 @@ export class ComparisonBox extends ViewBoxAnnotatableComponent<FieldViewProps>()
<button className="submit-buttonrecord" onClick={this._listening ? this.stopListening : this.startListening} style={{ background: this._listening ? 'lightgray' : '', borderRadius: '2px' }}>
{<FontAwesomeIcon icon="microphone" size="lg" />}
</button>
- <div
- className="submit-buttonschema-header-button"
- onPointerDown={e => this.openContextMenu(e.clientX, e.clientY, true)}
- style={{ position: 'absolute', top: '5px', left: '50px', zIndex: '100', width: '5px', height: '5px', cursor: 'pointer' }}>
+ <div className="submit-buttonschema-header-button" onPointerDown={e => this.openContextMenu(e.clientX, e.clientY, true)} style={{ position: 'absolute', top: '5px', left: '50px', zIndex: '100', cursor: 'pointer' }}>
<FontAwesomeIcon color={'white'} icon="caret-down" />
</div>
- <button
- className="submit-buttonpronunciation"
- onClick={this.evaluatePronunciation}
- style={{ display: 'inline-flex', alignItems: 'center', background: this._listening ? 'lightgray' : '', borderRadius: '2px', width: '100%' }}>
+ <button className="submit-buttonpronunciation" onClick={this.evaluatePronunciation} style={{ display: 'inline-flex', alignItems: 'center' }}>
Evaluate Pronunciation
</button>