Leif Foged

Results 7 issues of Leif Foged

When using `terraform apply`, the `*_kustomization_backup.yaml` file is fetched from the *first* master node. `kustomization_backup.tf`: ``` data "remote_file" "kustomization_backup" { conn { host = module.control_planes[keys(module.control_planes)[0]].ipv4_address port = 22 user =...

First of all, thanks for making this awesome library. I'm running into an issue where memory seems to grow uncontrollably. My test (Default options to new DB except with cache:...

hx-boost seems to capture the href/hx-get/etc of an element when the boosting logic is setup. But if the element changes its `href` since it was created, `hx-boost` will cause it...

I was having some trouble getting preloading working on a fresh page load until making this tweak. But it worked fine after doing a single boosted navigation. This led me...

Current, it looks like button/and input disabled styles get included with `btn[disabled]` or `btn-disabled` (and likewise for inputs). However, if these buttons are inputs are nested within a `fieldset` that...

clearAsync seems to not work for DBs with key-encoding = 'binary' Repro: 1/ Create a new DB. Settings: {keyEncoding: 'binary'} 2/ Call clearAsync TypeError: Cannot convert undefined or null to...

new Date(+value); => new Date(Number(value)); `value` is a BigInt. +value is a JS error ('Cannot convert a BigInt value to a number') I believe the proper conversion is Number(value). Also...