Skip to content

Commit 5c464aa

Browse files
committed
fixes
1 parent 9bfa8ff commit 5c464aa

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

release/app/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "todo-my-app-name",
3-
"version": "1.50.0",
3+
"version": "1.51.0",
44
"description": "Todo my app description",
55
"license": "MIT",
66
"main": "./dist/main/main.js",

src/renderer/app/components/OutputComponent/OutputComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const STATUS_OPTIONS = [
7373
const TASK_KIND_OPTIONS = [
7474
{ value: 'any', label: 'Any' },
7575
{ value: 'parent', label: 'Parent Task' },
76-
{ value: 'subtask', label: 'Subtask' },
76+
{ value: 'child', label: 'Child Task' },
7777
];
7878

7979
// Check if any filter is active (non-default)

src/renderer/app/components/inputs/JsonTextAreaField.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,5 @@ export default function JsonTextAreaField({ value, onChange, rows = 6, ...props
3232
}
3333

3434

35+
36+

0 commit comments

Comments
 (0)