Skip to content

Commit

Permalink
Removed outdated pod list section
Browse files Browse the repository at this point in the history
  • Loading branch information
BT-Creator committed Jul 17, 2024
1 parent 8959366 commit 941b72e
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions loama/src/components/PodList.vue
Original file line number Diff line number Diff line change
@@ -1,31 +1,7 @@
<template>
<div>
<h2>Pods:</h2>
<template v-for="pod in pods" :key="pod.pod">
<h4>{{ pod.pod }}</h4>
<table>
<thead>
<th>URL</th>
<th>Properties</th>
<th>Access Modes</th>
</thead>
<tbody>
<tr v-for="thing in pod.things" :key="thing.url">
<td>{{ thing.url }}</td>
<td>
<ul>
<li v-for="property in thing.properties" :key="property">{{ property }}</li>
</ul>
</td>
<td>
{{ thing.accessModes }}
</td>
</tr>
</tbody>
</table>
<h4>{{ `${pod.pod}index.json` }}</h4>
{{ indexFile }}
</template>

<button @click="addReadmePermissions">Add README permissions</button>
<button @click="removeReadmePermissions">Revoke README permissions</button>
</div>
Expand Down

0 comments on commit 941b72e

Please sign in to comment.