From e8dfeb2035871c117b2e3a47dff6b16bb0ae6bd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20V=C3=A9ril?= Date: Sat, 28 Sep 2019 14:38:14 +0200 Subject: [PATCH] Fix experimental/null text --- static/scripts/data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/scripts/data.js b/static/scripts/data.js index 5f1e0d65..c4794698 100644 --- a/static/scripts/data.js +++ b/static/scripts/data.js @@ -35,7 +35,7 @@ class method { } toString() { var str = this.name; - if (this.name) { + if (this.basis) { str = str + '/' + this.basis; } return str;