fix footnotes

This commit is contained in:
axolotle
2021-07-29 14:56:07 +02:00
parent 25e621a06e
commit 31da2f590f
3 changed files with 55 additions and 31 deletions
+5 -1
View File
@@ -175,6 +175,10 @@ export default {
nodes: state => ids => ids.map(id => state.nodes[id]),
node: state => id => state.nodes[id],
optionsVisible: state => state.optionsVisible,
history: state => state.history.map(id => state.nodes[id])
history: state => {
return state.history.map(id => state.nodes[id]).filter(node => {
return node.dataLevel > 0
})
}
}
}