Last active
June 5, 2018 08:07
-
-
Save ChinnakornP/2bb99475e8158b2c12af4dd63dc98c23 to your computer and use it in GitHub Desktop.
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
| const selectedEmployee = this.employeeSelected.map(form => { | |
| if (form.value.day <= 0) { | |
| try { | |
| this.notification.error('กรุณาเลือกจำนวนวัน'); | |
| throw new Error('Must be select day'); | |
| } catch (err) { | |
| /// | |
| } | |
| } | |
| return form.value; | |
| }); | |
| console.log('errr pass here') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment