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
[^1]:
Barring historical pedantry, "Postgres" and "PostgreSQL" are essentially
[^1]: Barring historical pedantry, "Postgres" and "PostgreSQL" are essentially
synonymous and are often used interchangeably. As a matter of convention
throughout Phonograph docs, "Postgres" is largely used to refer to the
database software, while "PostgreSQL" is typically used to refer to the

View file

@ -570,11 +570,12 @@
{#each lazy_data.fields as field, field_idx}
<TableCell
coords={{ region, row_idx, field_idx }}
cursor={coords_eq(selections[0].coords, {
region,
row_idx,
field_idx,
})}
cursor={selections.length !== 0 &&
coords_eq(selections[0].coords, {
region,
row_idx,
field_idx,
})}
{field}
onbecomecursor={(focus) => {
focus_cursor = focus;

View file

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