Renaming
This commit is contained in:
		@@ -14,6 +14,7 @@ import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
 | 
				
			|||||||
import { UserstoryTableComponent } from './userstory-table/userstory-table.component';
 | 
					import { UserstoryTableComponent } from './userstory-table/userstory-table.component';
 | 
				
			||||||
import { TaskTableComponent } from './task-table/task-table.component';
 | 
					import { TaskTableComponent } from './task-table/task-table.component';
 | 
				
			||||||
import { SprintTableComponent } from './sprint-table/sprint-table.component';
 | 
					import { SprintTableComponent } from './sprint-table/sprint-table.component';
 | 
				
			||||||
 | 
					import { BacklogComponent } from './backlog-table/backlog.component';
 | 
				
			||||||
// import { DashboardComponent } from './dashboard/dashboard.component';
 | 
					// import { DashboardComponent } from './dashboard/dashboard.component';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@NgModule({
 | 
					@NgModule({
 | 
				
			||||||
@@ -27,6 +28,7 @@ import { SprintTableComponent } from './sprint-table/sprint-table.component';
 | 
				
			|||||||
    SprintFormComponent,
 | 
					    SprintFormComponent,
 | 
				
			||||||
    SprintTableComponent,
 | 
					    SprintTableComponent,
 | 
				
			||||||
    // DashboardComponent,
 | 
					    // DashboardComponent,
 | 
				
			||||||
 | 
					    BacklogComponent
 | 
				
			||||||
  ],
 | 
					  ],
 | 
				
			||||||
  imports: [
 | 
					  imports: [
 | 
				
			||||||
    BrowserModule,
 | 
					    BrowserModule,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -17,11 +17,11 @@ import { SprintFormComponent } from '../sprint-form/sprint-form.component';
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@Component({
 | 
					@Component({
 | 
				
			||||||
  selector: 'app-userstory-table',
 | 
					  selector: 'app-backlog',
 | 
				
			||||||
  templateUrl: './userstory-table.component.html',
 | 
					  templateUrl: './backlog.component.html',
 | 
				
			||||||
  styleUrls: ['./userstory-table.component.css'],
 | 
					  styleUrls: ['./backlog.component.css'],
 | 
				
			||||||
})
 | 
					})
 | 
				
			||||||
export class UserstoryTableComponent extends TableComponentBase<
 | 
					export class BacklogComponent extends TableComponentBase<
 | 
				
			||||||
  ScrumUserstory
 | 
					  ScrumUserstory
 | 
				
			||||||
> {
 | 
					> {
 | 
				
			||||||
  public tasks: ScrumTask[] = [];
 | 
					  public tasks: ScrumTask[] = [];
 | 
				
			||||||
		Reference in New Issue
	
	Block a user