This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(query): create new work item dialog (#2791)
* fix(query): create new work item dialog * fix(query-quick-add): change url for create and open * fix(workitemCreate): add close button to workitem create Dialog * chore(tslint): resolve linter error and remove dead code * fix(workitem-effect): Generate Success notification only for query Tab * chore(query): remove extra line and spaces * fix(query): temporarilt disable tests * fix(work-item.effect): change Add and open url for backlog tab * fix(query): fix indentation in query html * fix(quickAdd): show the description of workitem type in dropdown * fix(quickAdd): close popover on outside click * fix(detailpage): preserve route when navigating to detail page * fix(quickAdd): dont dispatch AddSuccess action on workitem creation * fix(quickAdd): reset workitem popup after a workitem is created * fix(query): add infinite scroll module removed during merge * fix(query): permission on query quick add
- Loading branch information
Showing
9 changed files
with
252 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 16 additions & 8 deletions
24
src/app/components_ngrx/work-item-quick-add/work-item-quick-add.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { FormsModule } from '@angular/forms'; | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; | ||
|
||
import { BsDropdownConfig, BsDropdownModule } from 'ngx-bootstrap/dropdown'; | ||
import { PermissionQuery } from '../../models/permission.model'; | ||
import { CommonSelectorModule } from '../common-selector/common-selector.module'; | ||
import { InfotipModule } from '../infotip/infotip.module'; | ||
import { WorkItemQuickAddComponent } from './work-item-quick-add.component'; | ||
|
||
@NgModule({ | ||
imports: [ BsDropdownModule.forRoot(), CommonModule, FormsModule, InfotipModule ], | ||
declarations: [ WorkItemQuickAddComponent ], | ||
exports: [ WorkItemQuickAddComponent ], | ||
providers: [ BsDropdownConfig, PermissionQuery ] | ||
imports: [ | ||
BsDropdownModule.forRoot(), | ||
CommonModule, | ||
CommonSelectorModule, | ||
FormsModule, | ||
InfotipModule, | ||
ReactiveFormsModule | ||
], | ||
declarations: [WorkItemQuickAddComponent], | ||
exports: [WorkItemQuickAddComponent], | ||
providers: [BsDropdownConfig, PermissionQuery] | ||
}) | ||
export class WorkItemQuickAddModule { } | ||
export class WorkItemQuickAddModule {} |
Oops, something went wrong.