Commit ae01b122 authored by tom's avatar tom

dont mutate the list while sorting internal txs

parent b20e8173
...@@ -121,6 +121,7 @@ const TxInternals = () => { ...@@ -121,6 +121,7 @@ const TxInternals = () => {
const content = (() => { const content = (() => {
const filteredData = data.items const filteredData = data.items
.slice()
// .filter(({ type }) => filters.length > 0 ? filters.includes(type) : true) // .filter(({ type }) => filters.length > 0 ? filters.includes(type) : true)
// .filter(searchFn(searchTerm)) // .filter(searchFn(searchTerm))
.sort(sortFn(sort)); .sort(sortFn(sort));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment