diff --git a/packages/bbui/src/Typography/Body.svelte b/packages/bbui/src/Typography/Body.svelte index ec32e54140..13e83434e4 100644 --- a/packages/bbui/src/Typography/Body.svelte +++ b/packages/bbui/src/Typography/Body.svelte @@ -8,7 +8,7 @@

diff --git a/packages/builder/src/components/backend/TableNavigator/TableDataImport.svelte b/packages/builder/src/components/backend/TableNavigator/TableDataImport.svelte index ba904061a3..42ab2b0406 100644 --- a/packages/builder/src/components/backend/TableNavigator/TableDataImport.svelte +++ b/packages/builder/src/components/backend/TableNavigator/TableDataImport.svelte @@ -1,5 +1,5 @@ diff --git a/packages/builder/src/components/backend/TableNavigator/modals/CreateTableModal.svelte b/packages/builder/src/components/backend/TableNavigator/modals/CreateTableModal.svelte index e870bc98bb..03d37ca6b5 100644 --- a/packages/builder/src/components/backend/TableNavigator/modals/CreateTableModal.svelte +++ b/packages/builder/src/components/backend/TableNavigator/modals/CreateTableModal.svelte @@ -3,7 +3,14 @@ import { store } from "builderStore" import { tables } from "stores/backend" import { notifications } from "@budibase/bbui" - import { Input, Label, ModalContent, Toggle, Divider } from "@budibase/bbui" + import { + Input, + Label, + ModalContent, + Toggle, + Divider, + Layout, + } from "@budibase/bbui" import TableDataImport from "../TableDataImport.svelte" import analytics from "analytics" import screenTemplates from "builderStore/store/screenTemplates" @@ -123,8 +130,10 @@ bind:value={createAutoscreens} />
- - + + + +
diff --git a/packages/builder/src/components/login/ForgotForm.svelte b/packages/builder/src/components/login/ForgotForm.svelte index afadf9f4cf..25d72228ef 100644 --- a/packages/builder/src/components/login/ForgotForm.svelte +++ b/packages/builder/src/components/login/ForgotForm.svelte @@ -30,12 +30,14 @@ Forgotten your password? - No problem! Just enter your account's email address and we'll send - you a link to reset it. + No problem! Just enter your account's email address and we'll send you + a link to reset it. - + diff --git a/packages/builder/src/components/login/ResetForm.svelte b/packages/builder/src/components/login/ResetForm.svelte index 4ae19b1ab1..83e9ab7a6e 100644 --- a/packages/builder/src/components/login/ResetForm.svelte +++ b/packages/builder/src/components/login/ResetForm.svelte @@ -16,7 +16,6 @@ } catch (err) { notifications.error("Unable to reset password") } - } @@ -33,7 +32,9 @@ - + diff --git a/packages/server/src/api/controllers/table/utils.js b/packages/server/src/api/controllers/table/utils.js index 3cf64e8e31..990840af06 100644 --- a/packages/server/src/api/controllers/table/utils.js +++ b/packages/server/src/api/controllers/table/utils.js @@ -6,7 +6,7 @@ const { InternalTables, } = require("../../../db/utils") const { isEqual } = require("lodash/fp") -const { AutoFieldSubTypes } = require("../../../constants") +const { AutoFieldSubTypes, FieldTypes } = require("../../../constants") const { inputProcessing } = require("../../../utilities/rowProcessor") const { USERS_TABLE_SCHEMA } = require("../../../constants") @@ -72,18 +72,21 @@ exports.handleDataImport = async (appId, user, table, dataImport) => { row._id = generateRowID(table._id) row.tableId = table._id const processed = inputProcessing(user, table, row) + table = processed.table row = processed.row - // these auto-fields will never actually link anywhere (always builder) for (let [fieldName, schema] of Object.entries(table.schema)) { + // check whether the options need to be updated for inclusion as part of the data import if ( - schema.autocolumn && - (schema.subtype === AutoFieldSubTypes.CREATED_BY || - schema.subtype === AutoFieldSubTypes.UPDATED_BY) + schema.type === FieldTypes.OPTIONS && + (!schema.constraints.inclusion || + schema.constraints.inclusion.indexOf(row[fieldName]) === -1) ) { - delete row[fieldName] + schema.constraints.inclusion = [ + ...schema.constraints.inclusion, + row[fieldName], + ] } } - table = processed.table data[i] = row } diff --git a/packages/server/src/utilities/csvParser.js b/packages/server/src/utilities/csvParser.js index 3ae020eb65..0d8b12cc0a 100644 --- a/packages/server/src/utilities/csvParser.js +++ b/packages/server/src/utilities/csvParser.js @@ -1,14 +1,16 @@ const csv = require("csvtojson") +const { FieldTypes } = require("../constants") const VALIDATORS = { - string: () => true, - number: attribute => !isNaN(Number(attribute)), - datetime: attribute => !isNaN(new Date(attribute).getTime()), + [FieldTypes.STRING]: () => true, + [FieldTypes.OPTIONS]: () => true, + [FieldTypes.NUMBER]: attribute => !isNaN(Number(attribute)), + [FieldTypes.DATETIME]: attribute => !isNaN(new Date(attribute).getTime()), } const PARSERS = { - number: attribute => Number(attribute), - datetime: attribute => new Date(attribute).toISOString(), + [FieldTypes.NUMBER]: attribute => Number(attribute), + [FieldTypes.DATETIME]: attribute => new Date(attribute).toISOString(), } function parse(csvString, parsers) {