You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 18, 2024. It is now read-only.
* docs: Remove useless color params in KeyPointLabels
They use colors from `background` property from respective `Label`
* docs: DEV-4153: Small docs fixes
- fix missed AudioRegion documentation in Audio tag after v3 release
- fix Brush example description
- add missed Repeater docs about pagination mode (added to LS directly)
Copy file name to clipboardExpand all lines: src/tags/visual/Repeater.js
+4-1
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,9 @@
4
4
* Repeater Tag for annotating multiple data objects in a dynamic range with the same semantics. You can loop through data items in a python-like `for` cycle in the labeling process.
5
5
* It repeats tags inside it for every item in a given data array from your dataset. All the occurences of `indexFlag` (default is `{{idx}}`) in parameter values will be replaced by the current index.
6
6
* Names should always be unique, so you can use this placeholder in tag names.
7
+
*
8
+
* The Repeater Tag supports the `mode` property. This creates the possibility to enable pagination in repeater for performance improvement.
9
+
* You can add a parameter `<Repeater mode="pagination" ...>` to show only one page at a time, shrinking memory used to one tag set.
7
10
* @example
8
11
* <!-- How tags are repeated and placeholders are replaced internally. -->
9
12
* <!-- original config -->
@@ -46,6 +49,6 @@
46
49
* @meta_description Customize Label Studio with the Repeater tag to repeat similar data blocks to accelerate labeling for machine learning and data science projects.
47
50
* @param {string} on - Data field object with array with similar data
48
51
* @param {string} [indexFlag={{idx}}] - Placeholder for array index in params of underlying tags
49
-
* @param {list|pagination} [mode] - Select display mode between default and paginated
52
+
* @param {list|pagination} [mode] - Select display mode between default and paginated
0 commit comments