taskplane 0.28.3 → 0.28.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1211,9 +1211,11 @@ async function showSectionSelectorLoop(
|
|
|
1211
1211
|
const sectionItems: SelectItem[] = SECTIONS.map((section, i) => ({
|
|
1212
1212
|
value: String(i),
|
|
1213
1213
|
label: section.name,
|
|
1214
|
-
description: section.
|
|
1215
|
-
? "
|
|
1216
|
-
:
|
|
1214
|
+
description: section.name === "Agent Extensions"
|
|
1215
|
+
? "Toggle extensions per agent type"
|
|
1216
|
+
: section.readOnly
|
|
1217
|
+
? "Read-only collection/record fields"
|
|
1218
|
+
: `${section.fields.length} setting${section.fields.length === 1 ? "" : "s"}`,
|
|
1217
1219
|
}));
|
|
1218
1220
|
|
|
1219
1221
|
const selectedSection = await ctx.ui.custom<string | null>((tui, theme, _kb, done) => {
|