core: Fix missing settings

This commit is contained in:
Koushik Dutta
2022-09-21 12:14:09 -07:00
parent 2f719445d7
commit cfcf302abb
3 changed files with 5 additions and 14 deletions

View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/core",
"version": "0.1.40",
"version": "0.1.41",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/core",
"version": "0.1.40",
"version": "0.1.41",
"license": "Apache-2.0",
"dependencies": {
"@scrypted/common": "file:../../common",

View File

@@ -1,6 +1,6 @@
{
"name": "@scrypted/core",
"version": "0.1.40",
"version": "0.1.41",
"description": "Scrypted Core plugin. Provides the UI, websocket, and engine.io APIs.",
"author": "Scrypted",
"license": "Apache-2.0",

View File

@@ -185,17 +185,8 @@
<LogCard :rows="15" :logRoute="`/device/${id}/`"></LogCard>
</v-flex>
<v-flex xs12 v-if="
availableMixins.length &&
!device.interfaces.includes(ScryptedInterface.Settings)
">
<v-card raised>
<CardTitle icon="fa-puzzle-piece">
Integrations and Extensions
</CardTitle>
<AvailableMixins :device="device"></AvailableMixins>
</v-card>
<v-flex xs12 v-if="!device.interfaces.includes(ScryptedInterface.Settings)">
<Settings :device="device"></Settings>
</v-flex>
</v-layout>
</v-flex>