diff --git a/src/js/popups/pb-tables-popup.js b/src/js/popups/pb-tables-popup.js
index c628961a1..d52962ca1 100644
--- a/src/js/popups/pb-tables-popup.js
+++ b/src/js/popups/pb-tables-popup.js
@@ -33,15 +33,17 @@ function update(mode) {
${pb.wpm}
- ${pb.acc}%
+ ${pb.acc ? pb.acc + "%" : "-"}
|
- ${pb.raw}
+ ${pb.raw ? pb.raw : "-"}
- ${pb.consistency}%
+ ${
+ pb.consistency ? pb.consistency + "%" : "-"
+ }
|
${pb.difficulty} |
- ${pb.language.replace(/_/g, " ")} |
+ ${pb.language ? pb.language.replace(/_/g, " ") : "-"} |
${pb.punctuation ? '' : ""} |
${pb.lazyMode ? '' : ""} |
${moment(pb.timestamp).format(
|