feat: replace calculator enter key label with symbol

This commit is contained in:
2026-05-16 18:41:03 +02:00
parent a24142cd72
commit a4bbffe65b
+1 -1
View File
@@ -30,7 +30,7 @@ const calculatorEl = document.querySelector('.calculator');
const statusLine = document.getElementById('statusLine');
const keypadKeys = [
{ label: 'ENTER', action: 'enter', className: 'key-enter' },
{ label: '', action: 'enter', className: 'key-enter' },
{ label: '⎋', action: 'escape', className: 'key-escape' },
{ label: 'C', action: 'clear', className: 'key-danger' },
{ label: '⌫', action: 'backspace', className: 'key-danger' },