Remove unused components
This commit is contained in:
parent
42cdcd5c25
commit
9cb9a6607b
@ -55,15 +55,11 @@
|
|||||||
>
|
>
|
||||||
</OtherSiteSettings>
|
</OtherSiteSettings>
|
||||||
</template>
|
</template>
|
||||||
<!-- <SiteSettingsBasicTable
|
|
||||||
:settings="settings"
|
|
||||||
></SiteSettingsBasicTable> -->
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import SiteSettingsBasicTable from './PanelComponents/ExtensionSettings/SiteSettingsBasicTable.vue';
|
|
||||||
import SiteExtensionSettings from './PanelComponents/ExtensionSettings/SiteExtensionSettings.vue';
|
import SiteExtensionSettings from './PanelComponents/ExtensionSettings/SiteExtensionSettings.vue';
|
||||||
import OtherSiteSettings from './PanelComponents/ExtensionSettings/OtherSiteSettings.vue';
|
import OtherSiteSettings from './PanelComponents/ExtensionSettings/OtherSiteSettings.vue';
|
||||||
|
|
||||||
@ -82,7 +78,6 @@ export default {
|
|||||||
],
|
],
|
||||||
components: {
|
components: {
|
||||||
SiteExtensionSettings,
|
SiteExtensionSettings,
|
||||||
SiteSettingsBasicTable,
|
|
||||||
OtherSiteSettings
|
OtherSiteSettings
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
@ -1,40 +0,0 @@
|
|||||||
<template>
|
|
||||||
<table>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Site</th>
|
|
||||||
<th>Status</th>
|
|
||||||
<th>Crop</th>
|
|
||||||
<th>Persist crop</th>
|
|
||||||
<th>Stretch</th>
|
|
||||||
<th>FS only</th>
|
|
||||||
<th>AARD FS only</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<template v-for="(site, key) in settings.active.sites" :key="key">
|
|
||||||
<tr>
|
|
||||||
<!-- host --> <td>{{key}}</td>
|
|
||||||
<!-- official status? --> <td>{{settings.active.sites[site].type}}</td>
|
|
||||||
<!-- enabled? --> <td>todo: add</td>
|
|
||||||
<!-- full screen only? --> <td>{{settings.active.sites[site].restrictions?.fullScreenOnly}}</td>
|
|
||||||
<!-- -->
|
|
||||||
</tr>
|
|
||||||
</template>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</template>
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {};
|
|
||||||
},
|
|
||||||
props: [
|
|
||||||
'settings',
|
|
||||||
],
|
|
||||||
components: {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
}
|
|
||||||
</script>
|
|
Loading…
Reference in New Issue
Block a user