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
|
## 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
|
||||||
|
|
|
||||||
|
|
@ -570,11 +570,12 @@
|
||||||
{#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 &&
|
||||||
region,
|
coords_eq(selections[0].coords, {
|
||||||
row_idx,
|
region,
|
||||||
field_idx,
|
row_idx,
|
||||||
})}
|
field_idx,
|
||||||
|
})}
|
||||||
{field}
|
{field}
|
||||||
onbecomecursor={(focus) => {
|
onbecomecursor={(focus) => {
|
||||||
focus_cursor = focus;
|
focus_cursor = focus;
|
||||||
|
|
|
||||||
|
|
@ -19,5 +19,6 @@ export default defineConfig({
|
||||||
assetFileNames: "[name].[ext]",
|
assetFileNames: "[name].[ext]",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
sourcemap: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue