1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

Mute socket messages in production, fix max-len, update dependencies

This commit is contained in:
Maksim Eltyshev 2019-09-25 02:26:31 +05:00
parent d7cc9a0d56
commit 2398199740
26 changed files with 1157 additions and 1192 deletions

View file

@ -2,7 +2,6 @@ import { createSelector } from 'redux-orm';
import isUndefined from 'lodash/isUndefined';
import orm from '../orm';
import { dbSelector } from './common';
import Config from '../constants/Config';
const nextPosition = (items, index, excludedId) => {
@ -30,7 +29,6 @@ const nextPosition = (items, index, excludedId) => {
export const nextBoardPositionSelector = createSelector(
orm,
dbSelector,
(_, projectId) => projectId,
(_, __, index) => index,
(_, __, ___, excludedId) => excludedId,
@ -47,7 +45,6 @@ export const nextBoardPositionSelector = createSelector(
export const nextListPositionSelector = createSelector(
orm,
dbSelector,
(_, boardId) => boardId,
(_, __, index) => index,
(_, __, ___, excludedId) => excludedId,
@ -64,7 +61,6 @@ export const nextListPositionSelector = createSelector(
export const nextCardPositionSelector = createSelector(
orm,
dbSelector,
(_, listId) => listId,
(_, __, index) => index,
(_, __, ___, excludedId) => excludedId,