Skip to content

Commit

Permalink
Merge pull request #754 from odisha-muktasoft/AUDIT-FIXES-1
Browse files Browse the repository at this point in the history
audit-fixes-1
  • Loading branch information
Tulika-eGov authored Oct 23, 2024
2 parents 11d18e0 + 92e88c2 commit eac9ad3
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@egovernments/digit-ui-module-core": "1.8.2-beta.25",
"@egovernments/digit-ui-module-hrms": "1.5.26",
"@egovernments/digit-ui-module-dss": "1.5.52",
"@egovernments/digit-ui-module-attendencemgmt": "0.4.14",
"@egovernments/digit-ui-module-attendencemgmt": "0.4.15",
"@egovernments/digit-ui-module-contracts": "0.4.15",
"@egovernments/digit-ui-module-measurement":"0.2.18",
"@egovernments/digit-ui-module-estimate": "0.4.21",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@
border: 3px solid;
width: 15%;
padding: 10px 15px;
border-color: rgb(244, 119, 56);
color: rgb(244, 119, 56) !important;
border-color: #C84C0E;
color: #C84C0E !important;
font-size: 16px;
}

Expand All @@ -100,7 +100,7 @@
border: 1px solid;
width: 15%;
padding: 10px 15px;
border-color: rgb(244, 119, 56);
color: rgb(244, 119, 56) !important;
border-color: #C84C0E;
color: #C84C0E !important;
font-size: 16px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -1098,6 +1098,10 @@ input[type="number"] {
&.works-header-view {
font-size: 36px;
}

&.works_attendance_view{
margin-bottom: 0px;
}
}

.submit-bar header {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,8 @@
}

.link {
@apply text-primary-main cursor-pointer;
@apply cursor-pointer;
color: #C84C0E !important;

:hover {
@apply text-primary-dark;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
padding: 8px;
--text-opacity: 1;
color: #C84C0E;
color: rgba(244, 119, 56, var(--text-opacity));
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@egovernments/digit-ui-module-attendencemgmt",
"version": "0.4.14",
"version": "0.4.15",
"description": "Attendence Management Module UI",
"main": "dist/index.js",
"module": "dist/index.modern.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const ViewAttendance = () => {
return (
<React.Fragment>
<div className={"employee-application-details"} style={{ marginBottom: "24px",alignItems:"center" }}>
<Header styles={{}} className="works-header-view">{showEditTitle ? t("ATM_EDIT_ATTENDENCE") : t("ATM_VIEW_ATTENDENCE")}</Header>
<Header styles={{}} className={`works-header-view ${showEditTitle ? "" : "works_attendance_view"}`}>{showEditTitle ? t("ATM_EDIT_ATTENDENCE") : t("ATM_VIEW_ATTENDENCE")}</Header>
{/* <MultiLink
onHeadClick={() => HandleDownloadPdf()}
downloadBtnClassName={"employee-download-btn-className"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const MBDetailes = ({ formdata }) => {
let rowStyle = window?.location.href.includes("create-purchase-bill") ? {marginRight:"9%"} : {}

return (
<div style={{ marginBottom: "2rem" }}>
<div>
{/* {!isMeasurementLoading && allMeasurementsIds && !(allMeasurementsIds?.length > 0) && <CitizenInfoLabel textStyle={{color:"#505A5F"}} fill={"#D4351C"} style={{marginBottom:"2rem", maxWidth:"40%",backgroundColor:"#EFC7C1"}} info={t("WORKS_PB_INFO")} text={t("WORKS_INFO_MB_NOT_CREATED")} />} */}
{!isMeasurementLoading && allMeasurementsIds && !(allMeasurementsIds?.length > 0) && (
<InfoCard
Expand Down
2 changes: 1 addition & 1 deletion frontend/micro-ui/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@egovernments/digit-ui-module-core": "1.8.2-beta.25",
"@egovernments/digit-ui-module-hrms": "1.5.26",
"@egovernments/digit-ui-module-dss": "1.5.52",
"@egovernments/digit-ui-module-attendencemgmt": "0.4.14",
"@egovernments/digit-ui-module-attendencemgmt": "0.4.15",
"@egovernments/digit-ui-module-contracts": "0.4.15",
"@egovernments/digit-ui-module-measurement":"0.2.18",
"@egovernments/digit-ui-module-estimate": "0.4.21",
Expand Down

0 comments on commit eac9ad3

Please sign in to comment.