Mobile search bar fixes (#1032)
* Mobile search bar fixes # Fixed - Fixed: Fixed an issue with longer usernames causing header to wrap to another line. (develop) - Fixed: Fixed an issue where the close button for the search was not centered on mobile. Verified on iOS Safari and iOS Chrome. (develop) * Adding artist to search, fixing cover artist in search
This commit is contained in:
parent
e59e9f92cf
commit
5e535386d6
6 changed files with 22 additions and 3 deletions
|
@ -150,6 +150,12 @@ export class UtilityService {
|
|||
anyChanged = true;
|
||||
}
|
||||
|
||||
const artists = snapshot.queryParamMap.get('artists');
|
||||
if (artists !== undefined && artists !== null) {
|
||||
filter.artists = [...filter.artists, ...artists.split(',').map(item => parseInt(item, 10))];
|
||||
anyChanged = true;
|
||||
}
|
||||
|
||||
const character = snapshot.queryParamMap.get('character');
|
||||
if (character !== undefined && character !== null) {
|
||||
filter.character = [...filter.character, ...character.split(',').map(item => parseInt(item, 10))];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue