From f1d44886ba0124835231e60811012c494157c49a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 10 Oct 2025 09:13:13 +0000 Subject: [PATCH 1/2] Initial plan From 6e08bc5d800058650eebb82a26c9a27af24f98a2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 10 Oct 2025 09:19:04 +0000 Subject: [PATCH 2/2] UI: Button Component Text and Style Update Co-authored-by: nmahesh-cainc <233236058+nmahesh-cainc@users.noreply.github.com> --- test-app/src/widgets/Button.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test-app/src/widgets/Button.js b/test-app/src/widgets/Button.js index 8d4a94fc..af02eec2 100644 --- a/test-app/src/widgets/Button.js +++ b/test-app/src/widgets/Button.js @@ -100,7 +100,8 @@ export default class Button extends createjs.Container { } _addText() { - this.text = new createjs.Text(this.value, 'bold 24px Arial', '#000'); + const labelText = `Click: ${this.value} ✓`; + this.text = new createjs.Text(labelText, 'bold 24px Helvetica', '#0066CC'); this.text.textAlign = 'center'; this.text.textBaseline = 'middle'; this.text.x = this.width / 2;