tangled
alpha
login
or
join now
microcosm.blue
/
microcosm-rs
65
fork
atom
Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
65
fork
atom
overview
issues
8
pulls
2
pipelines
fix reverse checkbox on try-it form
bad-example.com
1 month ago
c7750d66
6ee3a606
+2
-1
1 changed file
expand all
collapse all
unified
split
constellation
templates
try-it-macros.html.j2
+2
-1
constellation/templates/try-it-macros.html.j2
···
7
7
&did= <input type="text" name="did" value="{{ did }}" placeholder="did:plc:..." />{% endif %}{% endfor %}
8
8
<span id="did-placeholder"></span> <button id="add-did">+ did filter</button>
9
9
&limit= <input type="number" name="limit" value="{{ limit }}" max="100" placeholder="100" />
10
10
-
&reverse= <input type="checkbox" name="reverse" value="true" checked="false"><button type="submit">get links</button></pre>
10
10
+
&reverse= <input type="checkbox" name="reverse" value="true" {% if reverse %}checked{% endif %}>
11
11
+
<button type="submit">get links</button></pre>
11
12
</form>
12
13
<script>
13
14
const addDidButton = document.getElementById('add-did');