Add FIXME

This commit is contained in:
Peter Stuifzand 2020-11-04 23:40:52 +01:00
parent 32fe46f285
commit 69b1b11889

View File

@ -187,6 +187,7 @@ function Editor(holder, input) {
let rows = _.find(tree[0].children, c => c.text === 'rows') || []
let rowData = _.map(rows.children, row => {
// FIXME: Use real parse link function
let page = row.text.substring(2).substring(0, row.text.length - 4)
return fetch('/' + page + '?format=metakv')
.then(res => res.json())