feat(jobs): complete workspace draft parity
This commit is contained in:
@@ -25,6 +25,7 @@ import { useCompanies } from "../hooks/useCompanies";
|
||||
import TagsInput from "./TagsInput";
|
||||
import { useI18n } from "../i18n/I18nProvider";
|
||||
import { PIPELINE_STATUSES, statusLabel } from "../pipeline";
|
||||
import { removeApplicationAnswerDraft } from "../applicationDrafts";
|
||||
|
||||
interface Props {
|
||||
open: boolean;
|
||||
@@ -121,7 +122,7 @@ export default function EditJobDialog({ open, jobId, onClose, onSaved }: Props)
|
||||
setNextAction((j as any).nextAction ?? "");
|
||||
setFollowUpAt((j as any).followUpAt ? toDateInputValue((j as any).followUpAt) : "");
|
||||
setJobUrl(j.jobUrl ?? "");
|
||||
setNotes(j.notes ?? "");
|
||||
setNotes(removeApplicationAnswerDraft(j.notes));
|
||||
setDescription((j as any).description ?? "");
|
||||
setTranslatedDescription((j as any).translatedDescription ?? "");
|
||||
setDescriptionLanguage((j as any).descriptionLanguage ?? "");
|
||||
|
||||
Reference in New Issue
Block a user