Added length of appointment to config + fixed appointments not showing in scheduling modal + added appointment confirmation template. BOD-141 BOD-149 BOD-148
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
import { Input } from "antd";
|
||||
import { MailFilled } from "@ant-design/icons";
|
||||
import React, { forwardRef } from "react";
|
||||
import { Link } from "react-router-dom";
|
||||
function FormItemEmail(props, ref) {
|
||||
return (
|
||||
<Input
|
||||
{...props}
|
||||
addonAfter={
|
||||
props.email ? (
|
||||
<a href={`mailto:${props.email}`}>
|
||||
props.defaultValue ? (
|
||||
<a href={`mailto:${props.defaultValue}`}>
|
||||
<MailFilled />
|
||||
</a>
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user