()
| 51 | }, |
| 52 | computed: { |
| 53 | exportList () { |
| 54 | return _(this.problems).filter(p => { |
| 55 | return (p[this.messageOrHint].length > 0) && |
| 56 | (this.percentDifference(p) < this.completeThreshold) && |
| 57 | ((p.count / this.totalCount) >= (this.countThreshold / 100)) |
| 58 | }) |
| 59 | .uniq(p => p.trimmed) |
| 60 | .value() |
| 61 | }, |
| 62 | problems () { |
| 63 | return _.sortBy(_.flatten(Object.values(this.problemsByLevel), true), p => -p.count) |
| 64 | }, |