Refactor to use plain GoStyleCamelCase instead of json_style_snake_case.

This commit is contained in:
Zed A. Shaw 2025-09-18 15:44:53 -04:00
parent 931c493928
commit 051474bdc9
12 changed files with 60 additions and 61 deletions

View file

@ -14,8 +14,8 @@
<tr class="table-header"><th>URL</th><th>Description</th></tr>
<template x-for="item in links">
<tr class="table-row">
<td class="p-2"><a x-text="item.url" x-bind:href="item.url" target="_blank"></a></td>
<td class="p-2" x-text="item.description"></td>
<td class="p-2"><a x-text="item.Url" x-bind:href="item.Url" target="_blank"></a></td>
<td class="p-2" x-text="item.Description"></td>
</tr>
</template>
</table>
@ -29,9 +29,9 @@
<card class="card">
<top>Submit a Link</top>
<middle>
<input id="stream_id" name="stream_id" type="hidden" value="1">
<input id="url" name="url" type="text" placeholder="Link Url">
<input id="description" name="description" type="text" placeholder="Description">
<input id="StreamId" name="StreamId" type="hidden" value="1">
<input id="Url" name="Url" type="text" placeholder="Link Url">
<input id="Description" name="Description" type="text" placeholder="Description">
</middle>
<bottom>
<button id="submit" type="submit">Send It</button>