diff --git a/.kanbn/board.css b/.kanbn/board.css index ea914df..427c0bd 100644 --- a/.kanbn/board.css +++ b/.kanbn/board.css @@ -19,6 +19,9 @@ .kanbn-column-done .kanbn-column-task-list { border-color: #198038; } +.kanbn-task-data-workload { + display: none; +} .kanbn-task-data-relation { display: block; color: #198038; diff --git a/.kanbn/index.md b/.kanbn/index.md index a235f75..cc034de 100644 --- a/.kanbn/index.md +++ b/.kanbn/index.md @@ -11,6 +11,7 @@ completedColumns: - [review-save-options](tasks/review-save-options.md) - [can-this-run-in-the-browser](tasks/can-this-run-in-the-browser.md) +- [how-do-i-use-local-javascript-project-reference](tasks/how-do-i-use-local-javascript-project-reference.md) ## Todo @@ -26,3 +27,4 @@ completedColumns: - [show-relations-on-the-item-card](tasks/show-relations-on-the-item-card.md) - [understand-how-relations-work](tasks/understand-how-relations-work.md) - [review-adding-more-on-item-card](tasks/review-adding-more-on-item-card.md) +- [remove-relations-in-form](tasks/remove-relations-in-form.md) diff --git a/.kanbn/tasks/how-do-i-use-local-javascript-project-reference.md b/.kanbn/tasks/how-do-i-use-local-javascript-project-reference.md new file mode 100644 index 0000000..e9295e5 --- /dev/null +++ b/.kanbn/tasks/how-do-i-use-local-javascript-project-reference.md @@ -0,0 +1,9 @@ +--- +created: 2023-05-26T03:47:27.942Z +updated: 2023-05-26T03:47:27.933Z +assigned: "" +progress: 0 +tags: [] +--- + +# How do I use local javascript project reference diff --git a/.kanbn/tasks/remove-relations-in-form.md b/.kanbn/tasks/remove-relations-in-form.md new file mode 100644 index 0000000..b597643 --- /dev/null +++ b/.kanbn/tasks/remove-relations-in-form.md @@ -0,0 +1,18 @@ +--- +created: 2023-05-30T18:38:37.231Z +updated: 2023-05-30T18:54:59.604Z +assigned: "" +progress: 1 +tags: [] +started: 2023-05-28T00:00:00.000Z +completed: 2023-05-30T00:00:00.000Z +--- + +# Remove relations in form + +## Comments + +- date: 2023-05-30T18:42:55.772Z + Added count to button title + Used false + see false && values.relations.length > 0 && values.relations.map((relation, index) => diff --git a/CHANGELOG.md b/CHANGELOG.md index a695e2e..1d00d8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ -# 0.12.2 +# 0.12.3 * See board ... +# 0.12.2 + + * See below + - [remove-relations-in-form](tasks/remove-relations-in-form.md) + # 0.12.1 * See below diff --git a/package.json b/package.json index db8bf3b..b22caac 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "color": "#72abdd", "theme": "dark" }, - "version": "0.12.2", + "version": "0.12.3", "engines": { "vscode": "^1.23.0" }, @@ -125,7 +125,8 @@ "tsc:build": "tsc -p tsconfig.extension.json", "build": "node ./scripts/build-non-split.js && tsc -p tsconfig.extension.json", "test": "react-scripts test --env=jsdom", - "eject": "react-scripts eject" + "eject": "react-scripts eject", + "vscode:package": "vsce package" }, "devDependencies": { "@types/dateformat": "^3.0.1", diff --git a/src/TaskEditor.tsx b/src/TaskEditor.tsx index 990138e..901d961 100644 --- a/src/TaskEditor.tsx +++ b/src/TaskEditor.tsx @@ -421,7 +421,7 @@ const TaskEditor = ({ task, tasks, columnName, columnNames, customFields, dateFo {({ insert, remove, push }) => (
- {values.relations.length > 0 && values.relations.map((relation, index) => ( + {false && values.relations.length > 0 && values.relations.map((relation, index) => (
push({ type: '', task: '' })} > Add relation diff --git a/vscode-kanbn-0.12.2.vsix b/vscode-kanbn-0.12.2.vsix new file mode 100644 index 0000000..bd1c4dc Binary files /dev/null and b/vscode-kanbn-0.12.2.vsix differ