-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adb updates #46
base: quest
Are you sure you want to change the base?
Adb updates #46
Conversation
doesn't include storage updates
src/components/SongList.js
Outdated
title={ song.metadata ? song.metadata.songName : song.songName } | ||
ratings={ song.stats ? song.stats.rating : song.ratings } | ||
artist={ song.metadata ? song.metadata.songAuthorName : song.authorName } | ||
uploader={!!song.uploader ? song.uploader || song.uploader.username : ''} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A space is required after '{' react/jsx-curly-spacing
A space is required before '}' react/jsx-curly-spacing
src/css/SongListItem.scss
Outdated
@@ -49,6 +49,11 @@ | |||
white-space: nowrap; | |||
text-overflow: ellipsis; | |||
} | |||
.upload-date { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Selector should have depth of applicability no greater than 2, but was 3
src/actions/songListActions.js
Outdated
@@ -1,17 +1,17 @@ | |||
import { FETCH_NEW, FETCH_TOP_DOWNLOADS, FETCH_TOP_FINISHED, FETCH_LOCAL_SONGS, ADD_BSABER_RATING, SET_SCROLLTOP, SET_LOADING, SET_LOADING_MORE, LOAD_MORE, SET_RESOURCE, SET_VIEW, DISPLAY_WARNING } from './types' | |||
import { SONG_LIST } from '../views' | |||
import { BEATSAVER, LIBRARY } from '../constants/resources' | |||
import { installEssentialMods } from './modActions' | |||
import {installEssentialMods, isModInstalled} from './modActions' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A space is required after '{' object-curly-spacing
A space is required before '}' object-curly-spacing
Added adb for device management and syncing.