mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-08-03 21:12:24 +00:00
refactor(redesign): rename backlog tabs to backlog
This commit is contained in:
parent
0afc37cb16
commit
3bfdfca5fc
6 changed files with 8 additions and 7 deletions
|
|
@ -12,6 +12,7 @@
|
|||
.wrapper {
|
||||
min-height: 100%;
|
||||
flex: 1;
|
||||
padding-top: $s*3;
|
||||
|
||||
@include darkTheme {
|
||||
background: $dark-theme-bg-slightly-lighter;
|
||||
|
|
@ -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>();
|
||||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue