misc quality of life improvements

This commit is contained in:
Brent Schroeter 2025-11-11 06:42:54 +00:00
parent bb49aedbfb
commit 84095cfc4b
3 changed files with 8 additions and 7 deletions

View file

@ -120,8 +120,7 @@ characters, this balances name length with an ample space for possible names.
## Footnotes ## Footnotes
[^1]: [^1]: Barring historical pedantry, "Postgres" and "PostgreSQL" are essentially
Barring historical pedantry, "Postgres" and "PostgreSQL" are essentially
synonymous and are often used interchangeably. As a matter of convention synonymous and are often used interchangeably. As a matter of convention
throughout Phonograph docs, "Postgres" is largely used to refer to the throughout Phonograph docs, "Postgres" is largely used to refer to the
database software, while "PostgreSQL" is typically used to refer to the database software, while "PostgreSQL" is typically used to refer to the

View file

@ -570,7 +570,8 @@
{#each lazy_data.fields as field, field_idx} {#each lazy_data.fields as field, field_idx}
<TableCell <TableCell
coords={{ region, row_idx, field_idx }} coords={{ region, row_idx, field_idx }}
cursor={coords_eq(selections[0].coords, { cursor={selections.length !== 0 &&
coords_eq(selections[0].coords, {
region, region,
row_idx, row_idx,
field_idx, field_idx,

View file

@ -19,5 +19,6 @@ export default defineConfig({
assetFileNames: "[name].[ext]", assetFileNames: "[name].[ext]",
}, },
}, },
sourcemap: true,
}, },
}); });