Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
PayGov Changes and missing commits
Browse files Browse the repository at this point in the history
  • Loading branch information
Hari-egov committed Jul 1, 2024
1 parent eeec5a6 commit 498b79b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ class _ExpenseDetailsState extends State<ExpenseDetails> {
onChanged: expensesDetailsProvider
.expenditureDetails
.allowEdit ==
true
true && expensesDetailsProvider.expenditureDetails.isBillPaid == false
? expensesDetailsProvider
.onChangeOfCheckBox
: null),
Expand All @@ -594,7 +594,7 @@ class _ExpenseDetailsState extends State<ExpenseDetails> {
color: expensesDetailsProvider
.expenditureDetails
.allowEdit ==
true
true && expensesDetailsProvider.expenditureDetails.isBillPaid == false
? Colors.black
: Colors.grey,
fontWeight:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
}

.employee-card-input-only {
@apply mb-lg pl-sm outline-none block border w-full h-12 border-input-border border-solid bg-white leading-10 text-form-field text-text-primary;
}
.employee-card-input-only .employee-card-input {
border: none;
@apply mb-lg pl-sm outline-none block border w-full h-12 border-input-border border-solid bg-white leading-10 text-form-field text-text-primary;
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,7 @@ const EmployeeApp = ({ path, url, userType }) => {
</Link>{" "}
/ <span>{location.pathname === `/${window?.contextPath}/employee/hrms/inbox` ? t("HR_COMMON_HEADER") : t("HR_COMMON_HEADER")}</span>
</p>
<button className="clear-search" style={{ marginLeft: "15px",
marginBottom: "5px",
padding: "8px",
borderRadius: "5px" }} onClick={() => history.goBack()}>{t("HR_COMMON_BACK_ROUTE")}</button>
<div class="back-btn2 " onClick={() => history.goBack()}><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black" width="19px"><path d="M24 0v24H0V0h24z" fill="none" opacity=".87"></path><path d="M14 7l-5 5 5 5V7z"></path></svg><p>Back</p></div>

<PrivateRoute
path={`${path}/inbox`}
Expand Down

0 comments on commit 498b79b

Please sign in to comment.