Add h1 to local jobs page
This commit is contained in:
parent
5d02b7e79e
commit
14efff6e0a
|
@ -1,3 +1,8 @@
|
|||
<h1>
|
||||
<my-global-icon iconName="circle-tick" aria-hidden="true"></my-global-icon>
|
||||
<ng-container i18n>Local jobs</ng-container>
|
||||
</h1>
|
||||
|
||||
<div class="admin-sub-header">
|
||||
<div class="select-filter-block">
|
||||
<label for="jobType" i18n>Job type</label>
|
||||
|
|
|
@ -14,6 +14,7 @@ import { ButtonComponent } from '../../../shared/shared-main/buttons/button.comp
|
|||
import { NgSelectModule } from '@ng-select/ng-select'
|
||||
import { NgFor, NgClass, NgIf } from '@angular/common'
|
||||
import { FormsModule } from '@angular/forms'
|
||||
import { GlobalIconComponent } from '@app/shared/shared-icons/global-icon.component'
|
||||
|
||||
@Component({
|
||||
selector: 'my-jobs',
|
||||
|
@ -30,7 +31,8 @@ import { FormsModule } from '@angular/forms'
|
|||
SharedModule,
|
||||
NgIf,
|
||||
NgbTooltip,
|
||||
TableExpanderIconComponent
|
||||
TableExpanderIconComponent,
|
||||
GlobalIconComponent
|
||||
]
|
||||
})
|
||||
export class JobsComponent extends RestTable implements OnInit {
|
||||
|
|
|
@ -45,9 +45,12 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<label class="visually-hidden" for="sort-videos">Sort videos</label>
|
||||
|
||||
<ng-select
|
||||
class="sort"
|
||||
formControlName="sort"
|
||||
labelForId="sort-videos"
|
||||
[clearable]="false"
|
||||
[searchable]="false"
|
||||
[bindValue]="null"
|
||||
|
|
Loading…
Reference in New Issue