Skip to content

Commit

Permalink
core: fix settings subgroup regression
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Mar 6, 2023
1 parent b500473 commit c17a118
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions plugins/core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugins/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scrypted/core",
"version": "0.1.99",
"version": "0.1.100",
"description": "Scrypted Core plugin. Provides the UI, websocket, and engine.io APIs.",
"author": "Scrypted",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion plugins/core/ui/src/interfaces/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default {
get() {
if (this.rawSettingsGroupName)
return this.rawSettingsGroupName;
return Object.values(this.settingsGroups)?.[0] || 'extensions';
return Object.keys(this.settingsGroups)?.[0] || 'extensions';
},
set(value) {
this.rawSettingsGroupName = value;
Expand Down

0 comments on commit c17a118

Please sign in to comment.