feat(interviews): add preSelectedStage prop to MoveToSheet
This commit is contained in:
parent
6e2ddaf6da
commit
52c7dfcfe3
1 changed files with 4 additions and 3 deletions
|
|
@ -6,6 +6,7 @@ import type { PipelineStage } from '../stores/interviews'
|
|||
const props = defineProps<{
|
||||
currentStatus: string
|
||||
jobTitle: string
|
||||
preSelectedStage?: PipelineStage
|
||||
}>()
|
||||
|
||||
const emit = defineEmits<{
|
||||
|
|
@ -13,7 +14,7 @@ const emit = defineEmits<{
|
|||
close: []
|
||||
}>()
|
||||
|
||||
const selectedStage = ref<PipelineStage | null>(null)
|
||||
const selectedStage = ref<PipelineStage | null>(props.preSelectedStage ?? null)
|
||||
const interviewDate = ref('')
|
||||
const rejectionStage = ref('')
|
||||
const focusIndex = ref(0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue