Mark job as open upon cancelled appointment IO-678
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
import { DownOutlined, UpOutlined } from "@ant-design/icons";
|
||||
import React from "react";
|
||||
import { UpOutlined, DownOutlined } from "@ant-design/icons";
|
||||
export default function FormListMoveArrows({ move, index, total }) {
|
||||
const upDisabled = index === 0;
|
||||
const downDisabled = index === total - 1;
|
||||
|
||||
console.log(index);
|
||||
const handleUp = () => {
|
||||
move(index, index - 1);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user