Skip to content

Commit

Permalink
rename from from company name from employer name
Browse files Browse the repository at this point in the history
  • Loading branch information
goemen committed Oct 8, 2024
1 parent 9a5760a commit c5f6bc0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion admin-frontend/e2e/pages/reports/search-reports-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class SearchReportsPage extends AdminPortalPage {

async setup(): Promise<void> {
super.setup();
this.searchInput = await this.page.getByLabel('Search by company name');
this.searchInput = await this.page.getByLabel('Search by employer name');
this.searchButton = await this.page.getByRole('button', { name: 'Search' });
this.filterButton = await this.page.getByRole('button', {
name: 'Filter',
Expand Down
2 changes: 1 addition & 1 deletion admin-frontend/src/components/EmployersPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const isDirty = computed(() => {
const headers = ref<any>([
{
title: 'Company Name',
title: 'Employer Name',
align: 'start',
sortable: true,
key: 'company_name',
Expand Down
2 changes: 1 addition & 1 deletion admin-frontend/src/components/ReportSearchFilters.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
v-model="searchText"
prepend-inner-icon="mdi-magnify"
density="compact"
label="Search by company name"
label="Search by employer name"
variant="solo"
hide-details
:single-line="true"
Expand Down
2 changes: 1 addition & 1 deletion admin-frontend/src/components/ReportsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const headers = ref<any>([
key: ReportKeys.CREATE_DATE,
},
{
title: 'Company name',
title: 'Employer name',
align: 'start',
sortable: true,
key: ReportKeys.COMPANY_NAME,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const headers = [
key: 'update_date',
},
{
title: 'Company Name',
title: 'Employer Name',
align: 'start',
sortable: true,
key: 'pay_transparency_company.company_name',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const headers = [
key: 'admin_last_access_date',
},
{
title: 'Company Name',
title: 'Employer Name',
align: 'start',
sortable: true,
key: 'pay_transparency_company.company_name',
Expand Down

0 comments on commit c5f6bc0

Please sign in to comment.