Fixed todos so they get picked up by extensions.

This commit is contained in:
Patrick Fic
2020-02-19 13:46:14 -08:00
parent faed2c32b6
commit f49f460a66
19 changed files with 30 additions and 30 deletions

View File

@@ -11,7 +11,7 @@ export default function ScheduleJobModalComponent({
...props
}) {
const { t } = useTranslation();
//TODO: Existing appointments list only refreshes sometimes after modal close. May have to do with the container class.
//TODO Existing appointments list only refreshes sometimes after modal close. May have to do with the container class.
return (
<Modal
{...props}
@@ -47,7 +47,7 @@ export default function ScheduleJobModalComponent({
</Row>
{
//TODO: Build out notifications.
//TODO Build out notifications.
}
<Checkbox
defaultChecked={formData.notifyCustomer}

View File

@@ -43,7 +43,7 @@ export default connect(
visible={scheduleModalVisible}
onCancel={() => setscheduleModalVisible(false)}
onOk={() => {
//TODO: Customize the amount of minutes it will add.
//TODO Customize the amount of minutes it will add.
insertAppointment({
variables: {
app: { ...appData, end: moment(appData.start).add(60, "minutes") }
@@ -55,7 +55,7 @@ export default connect(
});
if (formData.notifyCustomer) {
//TODO: Implement customer reminder on scheduling.
//TODO Implement customer reminder on scheduling.
alert("Chosed to notify the customer somehow!");
}
setscheduleModalVisible(false);