Merge pull request 'refs #5752' (!58) from 5752-fix-dev into dev
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #58
Reviewed-by: Alexandre Riera <alexandre@verdnatura.es>
This commit is contained in:
Alex Moreno 2023-06-01 07:14:22 +00:00
commit 5cf7bd95ec
5 changed files with 15 additions and 15 deletions

View File

@ -40,7 +40,7 @@ onMounted(async () => {
async function fetch() { async function fetch() {
try { try {
const filter = Object.assign({}, $props.filter); const filter = Object.assign({}, $props.filter); // eslint-disable-line vue/no-dupe-keys
if ($props.where) filter.where = $props.where; if ($props.where) filter.where = $props.where;
if ($props.sortBy) filter.order = $props.sortBy; if ($props.sortBy) filter.order = $props.sortBy;
if ($props.limit) filter.limit = $props.limit; if ($props.limit) filter.limit = $props.limit;

View File

@ -77,7 +77,7 @@ function reset() {
state.set($props.model, originalData.value); state.set($props.model, originalData.value);
hasChanges.value = false; hasChanges.value = false;
} }
// eslint-disable-next-line vue/no-dupe-keys
function filter(value, update, filterOptions) { function filter(value, update, filterOptions) {
update( update(
() => { () => {

View File

@ -36,7 +36,7 @@ const props = defineProps({
const emit = defineEmits(['onUpdate']); const emit = defineEmits(['onUpdate']);
const discount = ref(0); const discount = ref(0); // eslint-disable-line vue/no-dupe-keys
let canceller; let canceller;
onMounted(() => { onMounted(() => {

View File

@ -11,7 +11,7 @@ export default {
redirect: { name: 'WorkerMain' }, redirect: { name: 'WorkerMain' },
menus: { menus: {
main: ['WorkerList'], main: ['WorkerList'],
card: ['WorkerNotificationsManager'], // card: ['WorkerNotificationsManager'],
}, },
children: [ children: [
{ {
@ -46,15 +46,15 @@ export default {
}, },
component: () => import('src/pages/Worker/Card/WorkerSummary.vue'), component: () => import('src/pages/Worker/Card/WorkerSummary.vue'),
}, },
{ // {
name: 'WorkerNotificationsManager', // name: 'WorkerNotificationsManager',
path: 'notifications', // path: 'notifications',
meta: { // meta: {
title: 'notifications', // title: 'notifications',
icon: 'notifications', // icon: 'notifications',
}, // },
component: () => import('src/pages/Worker/Card/WorkerNotificationsManager.vue'), // component: () => import('src/pages/Worker/Card/WorkerNotificationsManager.vue'),
}, // },
], ],
}, },
], ],