We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 348f0c9 commit 3f69e70Copy full SHA for 3f69e70
packages/pico-engine/public/index.html
@@ -241,15 +241,17 @@ <h2>Children</h2>
241
<script id="channels-template" type="text/x-handlebars-template">
242
Channels
243
<table class="channel-table">
244
-<tr><th>id</th><th>name</th><th>type</th><th> </th></tr>
+<tr><th>id</th><th> </th><th>name</th><th>type</th><th>policy</th></tr>
245
{{#each channel}}
246
<tr>
247
-<td>{{id}}</td><td>{{name}}</td><td>{{type}}</td>
+<td>{{id}}</td>
248
<td>
249
{{#if canDel}}
250
<a class="js-ajax-link" href="/api/pico/{{../id}}/rm-channel/{{id}}">del</a>
251
{{/if}}
252
</td>
253
+<td>{{name}}</td><td>{{type}}</td>
254
+<td>{{policy_id}}</td>
255
</tr>
256
{{/each}}
257
</table>
0 commit comments