diff --git a/editor/src/editor.js b/editor/src/editor.js index fbf8a8d..2b6804e 100644 --- a/editor/src/editor.js +++ b/editor/src/editor.js @@ -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())