(core) updates from grist-core

This commit is contained in:
Paul Fitzpatrick
2024-02-12 08:15:38 -05:00
12 changed files with 235 additions and 32 deletions

View File

@@ -430,6 +430,7 @@ export class ActiveDocImport {
const columnData: BulkColValues = {};
const srcCols = await this._activeDoc.getTableCols(docSession, hiddenTableId);
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
const srcColIds = srcCols.map(c => c.id as string);
// Only include destination columns that weren't skipped.

View File

@@ -54,6 +54,7 @@ export function makeGristConfig(options: MakeGristConfigOptions): GristLoadConfi
baseDomain,
singleOrg: process.env.GRIST_SINGLE_ORG,
helpCenterUrl: process.env.GRIST_HELP_CENTER || "https://support.getgrist.com",
freeCoachingCallUrl: process.env.FREE_COACHING_CALL_URL || "https://calendly.com/grist-team/grist-free-coaching-call",
pathOnly,
supportAnon: shouldSupportAnon(),
enableAnonPlayground: isAffirmative(process.env.GRIST_ANON_PLAYGROUND ?? true),