mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-07 21:42:16 -07:00
[UI Work] Add Overview Artist Index View
This commit is contained in:
parent
f6fc78d927
commit
566ac1a9d3
41 changed files with 1337 additions and 138 deletions
|
@ -1,5 +1,5 @@
|
|||
.description {
|
||||
line-height: 1.528571429;
|
||||
line-height: $lineHeight;
|
||||
}
|
||||
|
||||
.description {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.title {
|
||||
line-height: 1.528571429;
|
||||
line-height: $lineHeight;
|
||||
}
|
||||
|
||||
.title {
|
||||
|
|
|
@ -75,7 +75,6 @@ class PathInput extends Component {
|
|||
|
||||
onInputBlur = () => {
|
||||
this.props.onClearPaths();
|
||||
this.props.onFetchPaths('');
|
||||
}
|
||||
|
||||
onSuggestionsFetchRequested = ({ value }) => {
|
||||
|
@ -85,7 +84,6 @@ class PathInput extends Component {
|
|||
onSuggestionsClearRequested = () => {
|
||||
// Required because props aren't always rendered, but no-op
|
||||
// because we don't want to reset the paths after a path is selected.
|
||||
// `onInputBlur` will handle clearing when the user leaves the input.
|
||||
}
|
||||
|
||||
onSuggestionSelected = (event, { suggestionValue }) => {
|
||||
|
|
|
@ -69,7 +69,7 @@ class SignalRConnector extends Component {
|
|||
}
|
||||
|
||||
componentDidMount() {
|
||||
console.log('starting signalR');
|
||||
console.log('Starting signalR');
|
||||
|
||||
this.signalRconnection = $.connection('/signalr', { apiKey: window.Sonarr.apiKey });
|
||||
|
||||
|
@ -281,7 +281,7 @@ class SignalRConnector extends Component {
|
|||
|
||||
onStateChanged = (change) => {
|
||||
const state = getState(change.newState);
|
||||
console.log(`SignalR: [${state}]`);
|
||||
console.log(`SignalR: ${state}`);
|
||||
|
||||
if (state === 'connected') {
|
||||
// Repopulate the page (if a repopulator is set) to ensure things
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue