0
0
Fork 0

Make value comparision not strict

This commit is contained in:
William Buezas 2024-04-02 10:09:28 -03:00
parent 026588c03d
commit 835174612c
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ const worker = computed(() => arrayData.store?.data);
const isHr = computed(() => hasAny(['hr']));
const isHimSelf = computed(() => user.value.id === route.params.id);
const isHimSelf = computed(() => user.value.id == route.params.id);
const columns = computed(() => {
return weekdayStore.getLocales?.map((day, index) => {