fix: sanitised badge assignment api

This commit is contained in:
Jannat Patel
2026-02-19 12:24:47 +05:30
parent ba395fe982
commit cb3af6fa63
6 changed files with 37 additions and 15 deletions

View File

@@ -206,7 +206,7 @@ const referenceDoctypeOptions = computed(() => {
})
const eventOptions = computed(() => {
let options = ['New', 'Value Change', 'Auto Assign']
let options = ['New', 'Value Change', 'Manual Assignment']
return options.map((event) => ({ label: __(event), value: event }))
})