forked from verdnatura/salix-front
Make value comparision not strict
This commit is contained in:
parent
026588c03d
commit
835174612c
|
@ -64,7 +64,7 @@ const worker = computed(() => arrayData.store?.data);
|
||||||
|
|
||||||
const isHr = computed(() => hasAny(['hr']));
|
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(() => {
|
const columns = computed(() => {
|
||||||
return weekdayStore.getLocales?.map((day, index) => {
|
return weekdayStore.getLocales?.map((day, index) => {
|
||||||
|
|
Loading…
Reference in New Issue