A container registry that uses the AT Protocol for manifest storage and S3 for blob storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix htmx deletes

+5
+5
pkg/appview/src/js/main.js
··· 3 3 import 'htmx-ext-json-enc'; 4 4 window.htmx = htmx; 5 5 6 + // htmx 2.x puts DELETE params in the URL by default, which breaks json-enc 7 + // (encodeParameters is never called, leaving an empty request body). Keep 8 + // only GET using URL params so DELETE bodies get JSON-encoded properly. 9 + htmx.config.methodsThatUseUrlParams = ['get']; 10 + 6 11 // Actor Typeahead (web component, auto-registers on import) 7 12 import 'actor-typeahead'; 8 13