Compare commits
No commits in common. "a7ccaa2812ae4979da6e94ea57e9f7477116f68d" and "2027bd3d17407114685de77ba184636552bc9fc9" have entirely different histories.
a7ccaa2812
...
2027bd3d17
@ -472,7 +472,10 @@ const ManageContact = ({ contactId, closeModal }) => {
|
||||
|
||||
{/* Actions */}
|
||||
<div className="d-flex justify-content-end gap-3 py-2">
|
||||
<button
|
||||
<button className="btn btn-sm btn-primary" type="submit" disabled={isPending}>
|
||||
{isPending ? "Please Wait..." : "Submit"}
|
||||
</button>
|
||||
<button
|
||||
className="btn btn-sm btn-secondary"
|
||||
type="button"
|
||||
onClick={handleClosed}
|
||||
@ -480,10 +483,6 @@ const ManageContact = ({ contactId, closeModal }) => {
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
<button className="btn btn-sm btn-primary" type="submit" disabled={isPending}>
|
||||
{isPending ? "Please Wait..." : "Submit"}
|
||||
</button>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
</FormProvider>
|
||||
|
||||
@ -201,7 +201,7 @@ export default function DirectoryPage({ IsPage = true, projectId=null }) {
|
||||
className="form-check-label ms-2"
|
||||
htmlFor="inactiveEmployeesCheckbox"
|
||||
>
|
||||
{showActive ? "Active" : "Inactive" }
|
||||
{showActive ? "Inactive" : "Active"}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user