diff --git a/src/components/02_personnel-management/FormByType.vue b/src/components/02_personnel-management/FormByType.vue
index 0f0c3fd6..f3be10bc 100644
--- a/src/components/02_personnel-management/FormByType.vue
+++ b/src/components/02_personnel-management/FormByType.vue
@@ -182,14 +182,15 @@ watch(
v-if="userType === 'MESSENGER'"
outlined
clearable
- use-input
fill-input
emit-value
map-options
- hide-selected
hide-bottom-space
class="col-12"
input-debounce="0"
+ multiple
+ use-chips
+ stack-label
option-label="label"
option-value="value"
id="input-responsible-area"
@@ -199,20 +200,8 @@ watch(
:label="$t('personnel.form.responsibleArea')"
:options="responsibleAreaOptions"
@filter="responsibleAreaFilter"
- :model-value="readonly ? responsibleArea || '-' : responsibleArea"
- @update:model-value="
- (v) => (typeof v === 'string' ? (responsibleArea = v) : '')
- "
- @clear="responsibleArea = ''"
- >
-
-