We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b0126 commit 2b31975Copy full SHA for 2b31975
app/components/PVutils.ts
@@ -60,7 +60,7 @@ export function getPvValue(
60
return updatedPV.text;
61
} else if (updatedPV.b64byt != null) {
62
// PV value is base64 encoded
63
- return atob(updatedPV.b64byt);
+ return Buffer.from(updatedPV.b64byt, "base64").toString("utf-8");
64
} else if (updatedPV.value != null) {
65
// PV value is a number
66
return updatedPV.value;
0 commit comments