From a4bbffe65bf19389130fd8a0a51948e49f264360 Mon Sep 17 00:00:00 2001 From: MatMoul Date: Sat, 16 May 2026 18:41:03 +0200 Subject: [PATCH] feat: replace calculator enter key label with symbol --- samples/calc-02/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/calc-02/index.js b/samples/calc-02/index.js index 8514193..42be4e3 100644 --- a/samples/calc-02/index.js +++ b/samples/calc-02/index.js @@ -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' },