# 0.12.2
This commit is contained in:
parent
5cb3b39764
commit
2ffd43908e
@ -19,6 +19,9 @@
|
|||||||
.kanbn-column-done .kanbn-column-task-list {
|
.kanbn-column-done .kanbn-column-task-list {
|
||||||
border-color: #198038;
|
border-color: #198038;
|
||||||
}
|
}
|
||||||
|
.kanbn-task-data-workload {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
.kanbn-task-data-relation {
|
.kanbn-task-data-relation {
|
||||||
display: block;
|
display: block;
|
||||||
color: #198038;
|
color: #198038;
|
||||||
|
@ -11,6 +11,7 @@ completedColumns:
|
|||||||
|
|
||||||
- [review-save-options](tasks/review-save-options.md)
|
- [review-save-options](tasks/review-save-options.md)
|
||||||
- [can-this-run-in-the-browser](tasks/can-this-run-in-the-browser.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
|
## Todo
|
||||||
|
|
||||||
@ -26,3 +27,4 @@ completedColumns:
|
|||||||
- [show-relations-on-the-item-card](tasks/show-relations-on-the-item-card.md)
|
- [show-relations-on-the-item-card](tasks/show-relations-on-the-item-card.md)
|
||||||
- [understand-how-relations-work](tasks/understand-how-relations-work.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)
|
- [review-adding-more-on-item-card](tasks/review-adding-more-on-item-card.md)
|
||||||
|
- [remove-relations-in-form](tasks/remove-relations-in-form.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
|
18
.kanbn/tasks/remove-relations-in-form.md
Normal file
18
.kanbn/tasks/remove-relations-in-form.md
Normal file
@ -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) =>
|
@ -1,7 +1,12 @@
|
|||||||
# 0.12.2
|
# 0.12.3
|
||||||
|
|
||||||
* See board ...
|
* See board ...
|
||||||
|
|
||||||
|
# 0.12.2
|
||||||
|
|
||||||
|
* See below
|
||||||
|
- [remove-relations-in-form](tasks/remove-relations-in-form.md)
|
||||||
|
|
||||||
# 0.12.1
|
# 0.12.1
|
||||||
|
|
||||||
* See below
|
* See below
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
"color": "#72abdd",
|
"color": "#72abdd",
|
||||||
"theme": "dark"
|
"theme": "dark"
|
||||||
},
|
},
|
||||||
"version": "0.12.2",
|
"version": "0.12.3",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.23.0"
|
"vscode": "^1.23.0"
|
||||||
},
|
},
|
||||||
@ -125,7 +125,8 @@
|
|||||||
"tsc:build": "tsc -p tsconfig.extension.json",
|
"tsc:build": "tsc -p tsconfig.extension.json",
|
||||||
"build": "node ./scripts/build-non-split.js && tsc -p tsconfig.extension.json",
|
"build": "node ./scripts/build-non-split.js && tsc -p tsconfig.extension.json",
|
||||||
"test": "react-scripts test --env=jsdom",
|
"test": "react-scripts test --env=jsdom",
|
||||||
"eject": "react-scripts eject"
|
"eject": "react-scripts eject",
|
||||||
|
"vscode:package": "vsce package"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/dateformat": "^3.0.1",
|
"@types/dateformat": "^3.0.1",
|
||||||
|
@ -421,7 +421,7 @@ const TaskEditor = ({ task, tasks, columnName, columnNames, customFields, dateFo
|
|||||||
<FieldArray name="relations">
|
<FieldArray name="relations">
|
||||||
{({ insert, remove, push }) => (
|
{({ insert, remove, push }) => (
|
||||||
<div>
|
<div>
|
||||||
{values.relations.length > 0 && values.relations.map((relation, index) => (
|
{false && values.relations.length > 0 && values.relations.map((relation, index) => (
|
||||||
<div className="kanbn-task-editor-row kanbn-task-editor-row-relation" key={index}>
|
<div className="kanbn-task-editor-row kanbn-task-editor-row-relation" key={index}>
|
||||||
<div className="kanbn-task-editor-column kanbn-task-editor-field-relation-type">
|
<div className="kanbn-task-editor-column kanbn-task-editor-field-relation-type">
|
||||||
<Field
|
<Field
|
||||||
@ -465,7 +465,7 @@ const TaskEditor = ({ task, tasks, columnName, columnNames, customFields, dateFo
|
|||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="kanbn-task-editor-button kanbn-task-editor-button-add"
|
className="kanbn-task-editor-button kanbn-task-editor-button-add"
|
||||||
title="Add relation"
|
title={`Add relation [${values.relations.length} relation(s)]`}
|
||||||
onClick={() => push({ type: '', task: '' })}
|
onClick={() => push({ type: '', task: '' })}
|
||||||
>
|
>
|
||||||
<i className="codicon codicon-link"></i>Add relation
|
<i className="codicon codicon-link"></i>Add relation
|
||||||
|
BIN
vscode-kanbn-0.12.2.vsix
Normal file
BIN
vscode-kanbn-0.12.2.vsix
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user