refs #5752 #58

Merged
alexm merged 1 commits from 5752-fix-dev into dev 2023-06-01 07:14:23 +00:00
5 changed files with 15 additions and 15 deletions

View File

@ -40,7 +40,7 @@ onMounted(async () => {
async function fetch() {
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.sortBy) filter.order = $props.sortBy;
if ($props.limit) filter.limit = $props.limit;

View File

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

View File

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

View File

@ -418,7 +418,7 @@ function showImportDialog() {
<i18n>
en:
You are about to remove {count} rows: '
You are about to remove <strong>{count}</strong> row |
You are about to remove <strong>{count}</strong> row |
You are about to remove <strong>{count}</strong> rows'
es:
Claimed lines: Líneas reclamadas
@ -435,6 +435,6 @@ es:
Discount updated: Descuento actualizado
Claimed quantity: Cantidad reclamada
You are about to remove {count} rows: '
Vas a eliminar <strong>{count}</strong> línea |
Vas a eliminar <strong>{count}</strong> línea |
Vas a eliminar <strong>{count}</strong> líneas'
</i18n>

View File

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