fix footnotes
This commit is contained in:
+5
-1
@@ -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
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user