Remove unused components

This commit is contained in:
Tamius Han 2023-07-15 01:29:57 +02:00
parent 42cdcd5c25
commit 9cb9a6607b
2 changed files with 0 additions and 45 deletions

View File

@ -55,15 +55,11 @@
>
</OtherSiteSettings>
</template>
<!-- <SiteSettingsBasicTable
:settings="settings"
></SiteSettingsBasicTable> -->
</div>
</template>
<script>
import SiteSettingsBasicTable from './PanelComponents/ExtensionSettings/SiteSettingsBasicTable.vue';
import SiteExtensionSettings from './PanelComponents/ExtensionSettings/SiteExtensionSettings.vue';
import OtherSiteSettings from './PanelComponents/ExtensionSettings/OtherSiteSettings.vue';
@ -82,7 +78,6 @@ export default {
],
components: {
SiteExtensionSettings,
SiteSettingsBasicTable,
OtherSiteSettings
},
computed: {

View File

@ -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>