Skip to content

Commit

Permalink
Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
louisdorard committed Feb 19, 2025
1 parent 62c8538 commit 1307b11
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand Down
2 changes: 1 addition & 1 deletion docs/linked-records.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion dss-plugin-visual-edit/plugin.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions dss-plugin-visual-edit/webapps/visual-edit/webapp.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 1307b11

Please sign in to comment.