mirror of
https://github.com/navidrome/navidrome.git
synced 2026-02-20 16:14:51 -05:00
Compare commits
3 Commits
custom-col
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ddab0da207 | ||
|
|
08a71320ea | ||
|
|
44a5482493 |
@@ -38,7 +38,7 @@ Before submitting a pull request, ensure that you go through the following:
|
|||||||
### Commit Conventions
|
### Commit Conventions
|
||||||
Each commit message must adhere to the following format:
|
Each commit message must adhere to the following format:
|
||||||
```
|
```
|
||||||
<type>(scope): <description> - <issue number>
|
<type>(scope): <description>
|
||||||
|
|
||||||
[optional body]
|
[optional body]
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -24,8 +24,9 @@ type Broker interface {
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
keepAliveFrequency = 15 * time.Second
|
keepAliveFrequency = 15 * time.Second
|
||||||
writeTimeOut = 5 * time.Second
|
// The timeout must be higher than the keepAliveFrequency, or the lack of activity will cause the channel to close.
|
||||||
bufferSize = 1
|
writeTimeOut = keepAliveFrequency + 5*time.Second
|
||||||
|
bufferSize = 1
|
||||||
)
|
)
|
||||||
|
|
||||||
type (
|
type (
|
||||||
|
|||||||
@@ -97,6 +97,16 @@ export default {
|
|||||||
boxShadow: '3px 3px 5px #3c3836',
|
boxShadow: '3px 3px 5px #3c3836',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
MuiSwitch: {
|
||||||
|
colorSecondary: {
|
||||||
|
'&$checked': {
|
||||||
|
color: '#458588',
|
||||||
|
},
|
||||||
|
'&$checked + $track': {
|
||||||
|
backgroundColor: '#458588',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
NDMobileArtistDetails: {
|
NDMobileArtistDetails: {
|
||||||
bgContainer: {
|
bgContainer: {
|
||||||
background:
|
background:
|
||||||
|
|||||||
Reference in New Issue
Block a user