misc quality of life improvements
This commit is contained in:
parent
bb49aedbfb
commit
84095cfc4b
3 changed files with 8 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -570,7 +570,8 @@
|
|||
{#each lazy_data.fields as field, field_idx}
|
||||
<TableCell
|
||||
coords={{ region, row_idx, field_idx }}
|
||||
cursor={coords_eq(selections[0].coords, {
|
||||
cursor={selections.length !== 0 &&
|
||||
coords_eq(selections[0].coords, {
|
||||
region,
|
||||
row_idx,
|
||||
field_idx,
|
||||
|
|
|
|||
|
|
@ -19,5 +19,6 @@ export default defineConfig({
|
|||
assetFileNames: "[name].[ext]",
|
||||
},
|
||||
},
|
||||
sourcemap: true,
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue