This commit is contained in:
Warunee Tamkoo 2024-04-23 11:41:33 +07:00
parent e1619148c6
commit 68f924b2c6

View file

@ -32,7 +32,7 @@ export const useKpiDataStore = defineStore("KPIDate", () => {
function convertCompetencyType(val: string) {
const competency = competencyType.value.find(
(x: DataOptions) => x.id == "val"
(x: DataOptions) => x.id == val
);
return competency?.name;
}