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
Copy file name to clipboardExpand all lines: src/formats/profiles/gpo-icufl-explorer/index.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,8 +86,11 @@ const s = view(Inputs.table(entries, {
86
86
87
87
If you select an item in the list (using the small circle in the left-hand column), more details about the item will be shown below (although it might take a moment to update).
88
88
89
+
89
90
## Files with extension '${ext}' in the selected item
90
91
92
+
This lists files in the item that have the extension '${ext}' (up to 1,000 files).
93
+
91
94
```js
92
95
93
96
functionitem_file_linker(path, i, d) {
@@ -102,7 +105,7 @@ function item_file_linker(path, i, d) {
102
105
}
103
106
}
104
107
105
-
constfiles=awaitsql([`SELECT fid, path, size FROM icufl WHERE LOWER(extension) == LOWER('.${ext}') AND item_id == '${q_item_id}' ORDER BY media ASC, path ASC`]);
108
+
constfiles=awaitsql([`SELECT fid, path, size FROM icufl WHERE LOWER(extension) == LOWER('.${ext}') AND item_id == '${q_item_id}' ORDER BY media ASC, path ASC LIMIT 1000`]);
106
109
```
107
110
108
111
```js
@@ -121,7 +124,7 @@ Inputs.table(files, {
121
124
122
125
## All file extensions in this item
123
126
124
-
This table shows all of the file extensions in the selected item, and counts up how many files have that extension, and now many bytes these files take up in total.
127
+
This table shows all of the file extensions in the selected item, and counts up how many files have that extension, and now many bytes these files take up in total. This can be useful for spotting items with similar patterns of files extensions and file extensions that commonly appear together.
0 commit comments