mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 04:47:27 +00:00
Replace # with - in frontend search component.
This commit is contained in:
parent
b8bac1f952
commit
239f9a8a91
1 changed files with 1 additions and 1 deletions
|
|
@ -148,7 +148,7 @@ export default {
|
||||||
document.body.style.overflow = 'hidden'
|
document.body.style.overflow = 'hidden'
|
||||||
},
|
},
|
||||||
formSubmit() {
|
formSubmit() {
|
||||||
const search = this.summoner.split(' ').join('').replace('+', ' ')
|
const search = this.summoner.split(' ').join('').replace('+', ' ').replace('#', '-')
|
||||||
if (search.length) {
|
if (search.length) {
|
||||||
this.$emit('formSubmit', search, this.selectedRegion)
|
this.$emit('formSubmit', search, this.selectedRegion)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue