refactor(redesign): rename backlog tabs to backlog

This commit is contained in:
Johannes Millan 2019-09-21 00:50:02 +02:00
parent 0afc37cb16
commit 3bfdfca5fc
6 changed files with 8 additions and 7 deletions

View file

@ -12,6 +12,7 @@
.wrapper {
min-height: 100%;
flex: 1;
padding-top: $s*3;
@include darkTheme {
background: $dark-theme-bg-slightly-lighter;

View file

@ -5,13 +5,13 @@ import {standardListAnimation} from '../../../ui/animations/standard-list.ani';
import {T} from '../../../t.const';
@Component({
selector: 'backlog-tabs',
templateUrl: './backlog-tabs.component.html',
styleUrls: ['./backlog-tabs.component.scss'],
selector: 'backlog',
templateUrl: './backlog.component.html',
styleUrls: ['./backlog.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
animations: [standardListAnimation]
})
export class BacklogTabsComponent {
export class BacklogComponent {
T = T;
@Output() closeBacklog = new EventEmitter<any>();

View file

@ -132,7 +132,7 @@
<div *ngIf="isPreloadBacklog || splitInputPos!==100"
class="inner-wrapper"
style="user-select: none;">
<backlog-tabs (closeBacklog)="splitInputPos=100"></backlog-tabs>
<backlog (closeBacklog)="splitInputPos=100"></backlog>
</div>
</div>
</div>

View file

@ -7,7 +7,7 @@ import {TasksModule} from '../../features/tasks/tasks.module';
import {RouterModule} from '@angular/router';
import {SplitModule} from './split/split.module';
import {TimeTrackingModule} from '../../features/time-tracking/time-tracking.module';
import {BacklogTabsComponent} from './backlog-tabs/backlog-tabs.component';
import {BacklogComponent} from './backlog/backlog.component';
import {MetricModule} from '../../features/metric/metric.module';
@NgModule({
@ -22,7 +22,7 @@ import {MetricModule} from '../../features/metric/metric.module';
TimeTrackingModule,
MetricModule,
],
declarations: [WorkViewPageComponent, BacklogTabsComponent],
declarations: [WorkViewPageComponent, BacklogComponent],
})
export class WorkViewPageModule {
}