搜索功能问题修复
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled
This commit is contained in:
@@ -14,10 +14,11 @@ export type InterviewInviteProps = {
|
||||
jobId?: string;
|
||||
companyId?: number;
|
||||
jobName?: string;
|
||||
applyId?: number;
|
||||
};
|
||||
|
||||
const InterviewInvite: React.FC<InterviewInviteProps> = (props) => {
|
||||
const { open, userId, jobId, companyId, jobName } = props;
|
||||
const { open, userId, jobId, companyId, jobName, applyId } = props;
|
||||
|
||||
const [interviewForm] = Form.useForm();
|
||||
const [interviewMethod, setInterviewMethod] = useState<string>('online');
|
||||
@@ -67,6 +68,7 @@ const InterviewInvite: React.FC<InterviewInviteProps> = (props) => {
|
||||
companyId: companyId,
|
||||
jobId: Number(jobId),
|
||||
userId: userId,
|
||||
applyId: applyId,
|
||||
jobName: jobName,
|
||||
interviewTime: values.interviewTime
|
||||
? dayjs(values.interviewTime).format('YYYY-MM-DD HH:mm:ss')
|
||||
|
||||
@@ -344,6 +344,7 @@ function ManagementList() {
|
||||
jobId={jobId}
|
||||
companyId={(jobInfo as any)?.companyId}
|
||||
jobName={(jobInfo as any)?.jobTitle}
|
||||
applyId={currentRow?.applyId ? Number(currentRow.applyId) : undefined}
|
||||
onClose={(needRefresh) => {
|
||||
setInviteVisible(false);
|
||||
setCurrentRow(undefined);
|
||||
|
||||
Reference in New Issue
Block a user