From ecf491668751aefa408c57a841b0d2086497344d Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 14 Jan 2025 19:24:50 +1100 Subject: launcher: better math error message --- services/math.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/math.ts b/services/math.ts index 8fbf757..41e1488 100644 --- a/services/math.ts +++ b/services/math.ts @@ -121,7 +121,7 @@ export default class Math extends GObject.Object { icon = "calculate"; } } catch (e) { - equation = "Invalid equation"; + equation = "Invalid equation: " + equation; result = String(e); icon = "error"; } -- cgit v1.2.3-freya