Skip to content

Commit

Permalink
Merge pull request #300 from ertush/hotfix-dev
Browse files Browse the repository at this point in the history
Updated components/WardGISMap.js
  • Loading branch information
ertush authored Feb 9, 2024
2 parents 5654ed3 + 769043d commit fafdf9f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/WardGISMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ const WardGISMap = ({ markerCoordinates, geoJSON, center, ward, from }) => {
<MapContainer
className='w-full'
center={center ?? [-0.818389, 37.477222]}
zoom={11.199}
zoom={12.199}
maxZoom={13.7}
scrollWheelZoom={false}
touchZoom={false}
style={{ height: '400px', position: 'relative', zIndex: '1', backgroundColor: '#e7eae8', padding: '15px' }}>
style={{ height: '400px', position: 'relative', backgroundColor: '#e7eae8', padding: '15px', 'overflow-y': 'scroll'}}>

{
geoJSON &&
Expand Down
1 change: 1 addition & 0 deletions pages/auth/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ const Login = (props) => {
autoSave='on'
autoComplete='current-password'
aria-autocomplete='inline'
placeholder='**********'
className="border w-full py-3 px-3 leading-none border-blue-600 bg-transparent focus:outline-none focus:border-indigo-700 focus:bg-white text-gray-700 pr-16" name="password" type={hidePassword ? 'password' : 'text'}
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion pages/community-units/approve/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const ApproveCommunityUnit = (props) => {
<Head>
<title>KMHFR - {cu?.name || cu?.official_name}</title>
<link rel='icon' href='/favicon.ico' />
<link rel='stylesheet' href='/assets/css/leaflet.css' />
{/* <link rel='stylesheet' href='/assets/css/leaflet.css' /> */}
</Head>

<MainLayout>
Expand Down
2 changes: 2 additions & 0 deletions pages/facilities/edit/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ export default function EditFacility(props) {
<Head>
<title>KMHFR - Edit Facility</title>
<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="/assets/css/leaflet.css" />

</Head>

<MainLayout isLoading={false} searchTerm={props?.query?.searchTerm}>
Expand Down

0 comments on commit fafdf9f

Please sign in to comment.