Commit 2c6f1d6e by Jason Song Committed by nobodyiam

fix number display, such as 123456789789798789

parent fba9811f
......@@ -21,11 +21,10 @@ function showTextModalDirective() {
function isJsonText(text) {
try {
JSON.parse(text);
return typeof JSON.parse(text) === "object";
} catch (e) {
return false;
}
return true;
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment