If you click a (?) icon beside the reviewable status a pop up will appear with expanded informatio that explains how the reviewable got its score, and how it compares to system thresholds.
6 lines
143 B
JavaScript
6 lines
143 B
JavaScript
import { registerUnbound } from "discourse-common/lib/helpers";
|
|
|
|
registerUnbound("float", function(n) {
|
|
return parseFloat(n).toFixed(1);
|
|
});
|