Skip to content

Commit

Permalink
remove control icon
Browse files Browse the repository at this point in the history
  • Loading branch information
jackvial committed Dec 27, 2024
1 parent 1eca586 commit 1b8e800
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lerobot/templates/browser_ui.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ <h3 class="text-lg font-semibold mb-4 text-gray-300">Configuration</h3>
<!-- Controls Panel -->
<div class="bg-gray-800 rounded-lg shadow-md p-6">
<h3 class="text-lg font-semibold mb-6 text-gray-300 flex items-center">
<i class="fas fa-gamepad mr-2"></i>
Controls
</h3>
<div class="space-y-3">
Expand Down Expand Up @@ -334,7 +333,7 @@ <h3 class="text-lg font-semibold mb-4 text-gray-300">Logs</h3>
toggleReward() {
this.rewardEnabled = !this.rewardEnabled;
// Emit the appropriate key event or handle reward toggle logic here
this.handleKey(this.rewardEnabled ? 'EnableReward' : 'DisableReward');
this.handleKey('space');
},

enableVoice() {
Expand Down

0 comments on commit 1b8e800

Please sign in to comment.