Skip to content

Commit

Permalink
fix: change organizationId declaration to let for v-model compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentauger committed Nov 8, 2024
1 parent 99323fe commit 1dcdf1f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ const emit = defineEmits<{
}>()
// form data
const organizationId = 1
// eslint-disable-next-line prefer-const -- used as v-model in the template
let organizationId = 1
const roleTitle = ref<string | null>(null)
const departmentName = ref<string | null>(null)
const startDate = ref<string | null>(null)
Expand Down

0 comments on commit 1dcdf1f

Please sign in to comment.