mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Disable Activity Panel by default.
You'll need to set `DevActivityPanel` (or `ND_DEVACTIVITYPANEL`) to `true` to re-enable it
This commit is contained in:
parent
5137407377
commit
63171368ed
5 changed files with 6 additions and 6 deletions
|
@ -53,7 +53,7 @@ type configOptions struct {
|
|||
DevPreCacheAlbumArtwork bool
|
||||
DevFastAccessCoverArt bool
|
||||
DevOldCacheLayout bool
|
||||
DevActivityMenu bool
|
||||
DevActivityPanel bool
|
||||
}
|
||||
|
||||
type scannerOptions struct {
|
||||
|
@ -143,7 +143,7 @@ func init() {
|
|||
viper.SetDefault("devprecachealbumartwork", false)
|
||||
viper.SetDefault("devoldcachelayout", false)
|
||||
viper.SetDefault("devFastAccessCoverArt", false)
|
||||
viper.SetDefault("devactivitymenu", true)
|
||||
viper.SetDefault("devactivitypanel", false)
|
||||
}
|
||||
|
||||
func InitConfig(cfgFile string) {
|
||||
|
|
|
@ -35,7 +35,7 @@ func serveIndex(ds model.DataStore, fs http.FileSystem) http.HandlerFunc {
|
|||
"enableTranscodingConfig": conf.Server.EnableTranscodingConfig,
|
||||
"gaTrackingId": conf.Server.GATrackingID,
|
||||
"enableDownloads": conf.Server.EnableDownloads,
|
||||
"devActivityMenu": conf.Server.DevActivityMenu,
|
||||
"devActivityPanel": conf.Server.DevActivityPanel,
|
||||
"devFastAccessCoverArt": conf.Server.DevFastAccessCoverArt,
|
||||
}
|
||||
j, err := json.Marshal(appConfig)
|
||||
|
|
|
@ -61,7 +61,7 @@ const App = () => (
|
|||
|
||||
const Admin = (props) => {
|
||||
const dispatch = useDispatch()
|
||||
if (config.devActivityMenu) {
|
||||
if (config.devActivityPanel) {
|
||||
setDispatch(dispatch)
|
||||
authProvider
|
||||
.checkAuth()
|
||||
|
|
|
@ -10,7 +10,7 @@ const defaultConfig = {
|
|||
enableDownloads: true,
|
||||
welcomeMessage: '',
|
||||
gaTrackingId: '',
|
||||
devActivityMenu: true,
|
||||
devActivityPanel: true,
|
||||
devFastAccessCoverArt: false,
|
||||
}
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ const CustomUserMenu = ({ onClick, ...rest }) => {
|
|||
|
||||
return (
|
||||
<>
|
||||
{config.devActivityMenu && permissions === 'admin' && <ActivityPanel />}
|
||||
{config.devActivityPanel && permissions === 'admin' && <ActivityPanel />}
|
||||
<UserMenu {...rest}>
|
||||
<PersonalMenu sidebarIsOpen={true} onClick={onClick} />
|
||||
<Divider />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue