Fixed the dynamic adding bug
This commit is contained in:
parent
9f8ca8139f
commit
077bd8fabc
@ -81,8 +81,9 @@ export class SprintTableComponent extends TableComponentBase<ScrumSprint> {
|
|||||||
keyboard: true,
|
keyboard: true,
|
||||||
size: 'md',
|
size: 'md',
|
||||||
});
|
});
|
||||||
if (editSprint === null) {
|
if (editSprint == null) {
|
||||||
modalRef.result.then((result) => {
|
modalRef.result.then((result) => {
|
||||||
|
alert("hi");
|
||||||
this.items.push(result);
|
this.items.push(result);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -187,7 +187,7 @@ export class TaskTableComponent extends TableComponentBase<ScrumTask> {
|
|||||||
keyboard: true,
|
keyboard: true,
|
||||||
size: 'lg',
|
size: 'lg',
|
||||||
});
|
});
|
||||||
if (editTask === null) {
|
if (editTask == null) {
|
||||||
modalRef.result.then((result) => {
|
modalRef.result.then((result) => {
|
||||||
this.items.push(result);
|
this.items.push(result);
|
||||||
});
|
});
|
||||||
|
@ -177,7 +177,7 @@ export class UserstoryInnerTableComponent extends TableComponentBase<
|
|||||||
keyboard: true,
|
keyboard: true,
|
||||||
size: 'lg',
|
size: 'lg',
|
||||||
});
|
});
|
||||||
if (editUserstory === null) {
|
if (editUserstory == null) {
|
||||||
modalRef.result.then((result) => {
|
modalRef.result.then((result) => {
|
||||||
this.items.push(result);
|
this.items.push(result);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user