fix: typo
This commit is contained in:
parent
38eb18a593
commit
860c8784a4
4 changed files with 9 additions and 9 deletions
|
|
@ -45,7 +45,7 @@ const employeeFormStore = useEmployeeForm();
|
|||
const customerBranchFormStore = useCustomerBranchForm();
|
||||
|
||||
const { t } = useI18n();
|
||||
const { fetchListCustomeBranch, fetchBranchEmployee } = customerStore;
|
||||
const { fetchListCustomerBranch, fetchBranchEmployee } = customerStore;
|
||||
const {
|
||||
currentFormData: customerBranchFormData,
|
||||
state: customerBranchFormState,
|
||||
|
|
@ -185,7 +185,7 @@ async function deleteBranchById(id: string) {
|
|||
async function fetchList() {
|
||||
if (!customerId.value) return;
|
||||
|
||||
const result = await fetchListCustomeBranch({
|
||||
const result = await fetchListCustomerBranch({
|
||||
customerId: customerId.value,
|
||||
query: !!inputSearch.value ? inputSearch.value : undefined,
|
||||
page: currentPageBranch.value,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue