diff --git a/docs/faq.md b/docs/faq.md index c24ce88..feeaac9 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -6,7 +6,7 @@ Visual Edit can load your original data regardless of the underlying connection. We strongly recommend using an SQL connection for the editlog, as explained in the [deployment guide](deploy). The edits and edited datasets can be on a different connection. -If [linked records](linked-records) are needed, and if the linked dataset has more than 1,000 rows or if lookup columns are needed, then the linked dataset must also be on an SQL connection. +If [linked records](linked-records) are needed, and if the linked dataset has more than 10,000 rows or if lookup columns are needed, then the linked dataset must also be on an SQL connection. ## Can the webapp be used by several users simultaneously? diff --git a/docs/linked-records.md b/docs/linked-records.md index f0c356f..d014d60 100644 --- a/docs/linked-records.md +++ b/docs/linked-records.md @@ -18,7 +18,7 @@ See [here](data-table-features) for more information on the editing experience. ## Known limitations -- The linked dataset must have less than 1,000 records OR the linked dataset must be on an SQL connection. +- The linked dataset must have less than 10,000 records OR the linked dataset must be on an SQL connection. - The storage type of the linked data set primary key must be of storage type **string** or **integer**. - The maximum number of lookup columns is two. - The linked dataset primary key and lookup columns values should not be empty. diff --git a/dss-plugin-visual-edit/plugin.json b/dss-plugin-visual-edit/plugin.json index 8f75d7f..b3e3ed9 100644 --- a/dss-plugin-visual-edit/plugin.json +++ b/dss-plugin-visual-edit/plugin.json @@ -1,6 +1,6 @@ { "id": "visual-edit", - "version": "2.0.3", + "version": "2.0.5", "meta": { "label": "Visual Edit", "description": "Spin up a visual app to validate and edit data", diff --git a/dss-plugin-visual-edit/webapps/visual-edit/webapp.json b/dss-plugin-visual-edit/webapps/visual-edit/webapp.json index e5c0163..3d0b943 100644 --- a/dss-plugin-visual-edit/webapps/visual-edit/webapp.json +++ b/dss-plugin-visual-edit/webapps/visual-edit/webapp.json @@ -69,7 +69,7 @@ { "name": "linked_record_ds_name_1", "label": "Linked Dataset", - "description": "Must be on a SQL connection or contain less than 1,000 records.", + "description": "Must be on a SQL connection or contain less than 10,000 records.", "type": "DATASET", "mandatory": true, "visibilityCondition": "model.linked_records_count > 0" @@ -116,7 +116,7 @@ { "name": "linked_record_ds_name_2", "label": "Linked Dataset", - "description": "Must be on a SQL connection or contain less than 1,000 records.", + "description": "Must be on a SQL connection or contain less than 10,000 records.", "type": "DATASET", "mandatory": true, "visibilityCondition": "model.linked_records_count > 1"