This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 1 - Part of reducer that updates one of the fields - which is array of machine attachments | |
| case SET_NEW_ATTACHMENT_STATE: { | |
| const { activeOrder, attachmentId, newState } = action.payload; | |
| let list = state[activeOrder].attachments; | |
| return state.map( | |
| (order, i) => | |
| i === activeOrder | |
| ? { | |
| ...order, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * List items test | |
| */ | |
| *{ | |
| -webkit-touch-callout: none; | |
| -webkit-user-select: none; | |
| -khtml-user-select: none; | |
| -moz-user-select: moz-none; | |
| -ms-user-select: none; |