Skip to content

Commit

Permalink
Fix Fyle expense url redirection and date picker (#394)
Browse files Browse the repository at this point in the history
* Fix Fyle expense url redirection

* Fix date picker
  • Loading branch information
ashwin1111 authored Dec 19, 2023
1 parent 21707f5 commit d9dd3c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/core/services/common/export-log.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class ExportLogService {
} else if (referenceType === FyleReferenceType.PAYMENT) {
url += `admin/#/settlements/${accountingExport.expenses[0].settlement_id}`;
}
return `${url}?org_id=${this.org_id}`;
return `${url}/?org_id=${this.org_id}`;
}

}
2 changes: 1 addition & 1 deletion src/app/core/services/si/export-log/export-log.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ export class ExportLogService {
url += `admin/#/settlements/${expenseGroup.expenses[0].settlement_id}`;
}

return `${url}?org_id=${this.org_id}`;
return `${url}/?org_id=${this.org_id}`;
}
}
2 changes: 1 addition & 1 deletion src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ p {
}

.p-datepicker-touch-ui, .p-calendar .p-datepicker-touch-ui {
@apply tw-min-w-fit #{!important};
@apply tw-min-w-fit tw-top-[50%] tw-left-[50%] #{!important};
}

.p-dropdown-filter {
Expand Down

0 comments on commit d9dd3c5

Please sign in to comment.