Skip to content

Commit

Permalink
Rename jobSearchAvailability component
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmbabhazi committed Oct 18, 2024
1 parent 6c2f4db commit ff38172
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import {
PaginationFilterBaseComponent,
SmartTableToggleComponent,
NonEditableNumberEditorComponent,
JobSearchAvailabilityComponent
JobSearchAvailabilityEditorComponent
} from '@gauzy/ui-core/shared';

/**
Expand Down Expand Up @@ -331,7 +331,7 @@ export class JobEmployeeComponent extends PaginationFilterBaseComponent implemen
},
editor: {
type: 'custom',
component: JobSearchAvailabilityComponent
component: JobSearchAvailabilityEditorComponent
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { BehaviorSubject, Observable } from 'rxjs';
></nb-toggle>
</div>`
})
export class JobSearchAvailabilityComponent extends DefaultEditor implements OnInit {
export class JobSearchAvailabilityEditorComponent extends DefaultEditor implements OnInit {
private _checked$: BehaviorSubject<boolean> = new BehaviorSubject(false);
@Input() cell!: Cell;
@Output() toggleChange: EventEmitter<boolean> = new EventEmitter();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ComponentsModule } from '../components/components.module';
import { PipesModule } from '../pipes/pipes.module';
import {
EmployeeLinkEditorComponent,
JobSearchAvailabilityComponent,
JobSearchAvailabilityEditorComponent,
NonEditableNumberEditorComponent,
NumberEditorComponent
} from './editors';
Expand Down Expand Up @@ -111,7 +111,7 @@ import { TaskBadgeViewComponentModule } from '../tasks/task-badge-view/task-badg
ValueWithUnitComponent,
VisibilityComponent,
NonEditableNumberEditorComponent,
JobSearchAvailabilityComponent
JobSearchAvailabilityEditorComponent
],
exports: [
AllowScreenshotCaptureComponent,
Expand Down

0 comments on commit ff38172

Please sign in to comment.