site: in examples.json don't return sections with no title

pull/2524/head
Conduitry 5 years ago
parent 2a2aa428a2
commit 8fa676bfb0

@ -5,7 +5,7 @@ let cached;
export function get(req, res) {
try {
if (!cached || process.env.NODE_ENV !== 'production') {
cached = JSON.stringify(get_examples());
cached = JSON.stringify(get_examples().filter(section => section.title));
}
res.writeHead(200, {

Loading…
Cancel
Save