Skip to content

Commit

Permalink
docs: DOC-193: Clarify legacy param for Taxonomy tag (#5624)
Browse files Browse the repository at this point in the history
* docs: DOC-193: Clarify legacy param for Taxonomy tag

* ci: Build frontend

Workflow run: https://github.com/HumanSignal/label-studio/actions/runs/8412171031

* ci: Build frontend

Workflow run: https://github.com/HumanSignal/label-studio/actions/runs/8424542325

---------

Co-authored-by: robot-ci-heartex <robot-ci-heartex@users.noreply.github.com>
Co-authored-by: nikitabelonogov <nikitabelonogov@users.noreply.github.com>
  • Loading branch information
3 people committed Mar 25, 2024
1 parent 2cc6b33 commit 32a70c9
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion docs/source/tags/taxonomy.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Use with the following data types: audio, image, HTML, paragraphs, text, time se
| [placeholder=] | <code>string</code> | | What to display as prompt on the input |
| [perRegion] | <code>boolean</code> | | Use this tag to classify specific regions instead of the whole object |
| [perItem] | <code>boolean</code> | | Use this tag to classify specific items inside the object instead of the whole object[^1] |
| [legacy] | <code>boolean</code> | | Use this tag to enable the legacy version of the Taxonomy tag. When true, the `apiUrl` parameter is not usable. |
| [legacy] | <code>boolean</code> | | Use this tag to enable the legacy version of the Taxonomy tag. The legacy version supports the ability for annotators to add labels as needed. However, when true, the `apiUrl` parameter is not usable. |

### Example

Expand Down
8 changes: 4 additions & 4 deletions web/dist/apps/labelstudio/version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"message": "fix",
"commit": "22a8229641ae9097804a9cd679ed4c23384bce5f",
"date": "2024-03-25T17:12:44.000Z",
"branch": "PLT-287"
"message": "Merge branch 'develop' into 'docs/193'",
"commit": "9742997963cf3e6946dade6d78892352ef1549ff",
"date": "2024-03-25T17:41:47.000Z",
"branch": "docs/193"
}
8 changes: 4 additions & 4 deletions web/dist/libs/datamanager/version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"message": "fix",
"commit": "22a8229641ae9097804a9cd679ed4c23384bce5f",
"date": "2024-03-25T17:12:44.000Z",
"branch": "PLT-287"
"message": "Merge branch 'develop' into 'docs/193'",
"commit": "9742997963cf3e6946dade6d78892352ef1549ff",
"date": "2024-03-25T17:41:47.000Z",
"branch": "docs/193"
}
2 changes: 1 addition & 1 deletion web/dist/libs/editor/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web/dist/libs/editor/main.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions web/dist/libs/editor/version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"message": "fix",
"commit": "22a8229641ae9097804a9cd679ed4c23384bce5f",
"date": "2024-03-25T17:12:44.000Z",
"branch": "PLT-287"
"message": "Merge branch 'develop' into 'docs/193'",
"commit": "9742997963cf3e6946dade6d78892352ef1549ff",
"date": "2024-03-25T17:41:47.000Z",
"branch": "docs/193"
}
2 changes: 1 addition & 1 deletion web/libs/editor/src/tags/control/Taxonomy/Taxonomy.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ import { errorBuilder } from '../../../core/DataValidator/ConfigValidator';
* @param {string} [placeholder=] - What to display as prompt on the input
* @param {boolean} [perRegion] - Use this tag to classify specific regions instead of the whole object
* @param {boolean} [perItem] - Use this tag to classify specific items inside the object instead of the whole object[^FF_LSDV_4583]
* @param {boolean} [legacy] - Use this tag to enable the legacy version of the Taxonomy tag. When true, the `apiUrl` parameter is not usable.
* @param {boolean} [legacy] - Use this tag to enable the legacy version of the Taxonomy tag. The legacy version supports the ability for annotators to add labels as needed. However, when true, the `apiUrl` parameter is not usable.
*/
const TagAttrs = types.model({
toname: types.maybeNull(types.string),
Expand Down

0 comments on commit 32a70c9

Please sign in to comment.