diff --git a/src/components/05_quotation/FormAbout.vue b/src/components/05_quotation/FormAbout.vue
index 4838f447..85b8d79a 100644
--- a/src/components/05_quotation/FormAbout.vue
+++ b/src/components/05_quotation/FormAbout.vue
@@ -57,11 +57,12 @@ defineEmits<{
& ExclusiveProps>();
@@ -80,12 +81,14 @@ function setDefaultValue() {
:option="
selectOptions.map((v) => {
const ret = {
- label: (
- {
- ['eng']: [v.nameEN, `(${v.code})`].join(' '),
- ['tha']: [v.name, `(${v.code})`].join(' '),
- } as const
- )[$i18n.locale],
+ label:
+ `${branchVirtual ? $t('branch.card.branchVirtual') : ''}` +
+ (
+ {
+ ['eng']: [v.nameEN, `(${v.code})`].join(' '),
+ ['tha']: [v.name, `(${v.code})`].join(' '),
+ } as const
+ )[$i18n.locale],
value: v.id,
};
return ret;