mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-12-12 17:40:52 +01:00
web: Don't replace / in results
This commit is contained in:
parent
59419582ae
commit
83f20e035c
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@paddim8/kalk-component",
|
||||
"version": "1.4.0",
|
||||
"version": "1.4.1",
|
||||
"description": "A Svelte component for kalk, a calculator that supports user-defined functions and variables.",
|
||||
"svelte": "src/main.ts",
|
||||
"main": "public/build/bundle.js",
|
||||
|
@ -317,7 +317,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
if (op) {
|
||||
if (op && !isOutput) {
|
||||
if (substring == "*") return "×";
|
||||
if (substring == "/") return "÷";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user