(timestamp: number)
| 591 | } |
| 592 | |
| 593 | _addTimestampToSelection(timestamp: number) { |
| 594 | if (!this.selectedDates.includes(timestamp)) { |
| 595 | this.selectedDates = [...this.selectedDates, timestamp]; |
| 596 | } |
| 597 | } |
| 598 | |
| 599 | _removeTimestampFromSelection(timestamp: number) { |
| 600 | this.selectedDates = this.selectedDates.filter(value => value !== timestamp); |
no outgoing calls
no test coverage detected