1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-04 04:01:42 +00:00

meme: fix empty meme issue

This commit is contained in:
Chris Sexton 2021-01-09 16:44:17 -05:00
parent 841d4c000e
commit b7459abd23

View File

@ -147,6 +147,9 @@ var memeIndex = `
},
filters: {
pretty: function(value) {
if (!value) {
return ""
}
return JSON.stringify(JSON.parse(value), null, 2);
}
},