summaryrefslogtreecommitdiff
path: root/src/ReportTable.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/ReportTable.vue')
-rw-r--r--src/ReportTable.vue10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/ReportTable.vue b/src/ReportTable.vue
index 8a0d617..5c78277 100644
--- a/src/ReportTable.vue
+++ b/src/ReportTable.vue
@@ -12,9 +12,6 @@
<b-dropdown-item v-for="rarity in RARITIES" :key="rarity" :value="rarity">{{ rarity }} Talents</b-dropdown-item>
</b-dropdown>
</p>
-
- <b-input placeholder="Search…" type="search" icon="magnify" v-model="filterName"></b-input>
-
</b-field>
<b-field>
@@ -119,7 +116,6 @@ export default Vue.component('report-table', {
const giveTrue = (x) => true;
const filters = [
this.filterRarity != ''? (entry) => maps.getTalentRarity(entry.Talent) == this.filterRarity : giveTrue,
- this.filterName != ''? (entry) => maps.getHero(entry.Actor).includes(this.filterName) || maps.getTalentName(entry.Talent).includes(this.filterName) : giveTrue,
!this.filterLowPickrate? (entry) => !entry.SampleTooSmall : giveTrue,
];
const and = (a, b) => a && b;
@@ -129,12 +125,6 @@ export default Vue.component('report-table', {
totalPicks: function() {
return ReportService.getTotalPicks(this.selectedMode);
},
- playersPerMatch: function() {
- return maps.playersPerMatch(this.selectedMode);
- },
- hasTalents: function() {
- return maps.hasTalents(this.selectedMode);
- },
},
components: {
HeroImage,