Skip to content

Commit c9e16c7

Browse files
committed
small documentation fixes
1 parent 5bcf0f1 commit c9e16c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dashjoin-docs/docs/developer-reference.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The child titles are used as a label. Only the active tab is shown.
7474
### Form Widgets
7575

7676
Like containers, form widgets allow adding input elements. Every input widget must use a unique name which is in turn
77-
used as the key in the resulting JSON structure. See [environment](appendix-inputs.md) for examples. Inputs can be of the following type:
77+
used as the key in the resulting JSON structure. See [appendix inputs](appendix-inputs.md) for examples. Inputs can be of the following type:
7878

7979
* boolean: displays an on/off toggle and returns a boolean value
8080
* string; a regular text box that returns a string
@@ -380,7 +380,7 @@ When icons is "*": "icon", all icons will be mapped to that same specified icon.
380380
Allows editing related records of a database record:
381381

382382
* prop: foreign key column on the related table
383-
* columns: columns to display in the editRelated table display. Note that this option is only available in Dashjoin Studio
383+
* columns: columns to display in the editRelated table display
384384

385385
#### graph
386386

@@ -539,7 +539,7 @@ allows the user to edit the text and call expressions via the custom menu.
539539

540540
```json
541541
{
542-
"widget": "mdxeditor"
542+
"widget": "mdxeditor",
543543
"markdown": "# Hello ${user} ${context}",
544544
"context": "'my context expression'",
545545
"properties": {
@@ -644,7 +644,7 @@ Displays a tree based on a recursive query
644644
* query: query that projects a single column with the keys of the current node's children. The primary key of the current node (null for the tree root) is passed as a query argument. The query typically has the form: select id from recursiveTable where fk=parameter
645645
* expression: allows configuring the widget via JSONata. The result must be a node or an array of nodes. A node has the fields data and an optional field children. The widget displays the contents of data similar to the display widget. If data includes an icon field, the tree is displayed [like this](https://mui.com/material-ui/react-list/#nested-list).
646646

647-
### uploadfile
647+
#### uploadfile
648648

649649
Allows uploading files to the upload directory. Note that WebDAV must be turned on using the WEBDEV_ENABLED environment
650650
variable (see Installation - Environment).

0 commit comments

Comments
 (0)