()
| 240 | // If the item has an href or button property it will render a native |
| 241 | // anchor or button that is clickable |
| 242 | private isClickable(): boolean { |
| 243 | return this.href !== undefined || this.button; |
| 244 | } |
| 245 | |
| 246 | private canActivate(): boolean { |
| 247 | return this.isClickable() || this.hasCover(); |
no outgoing calls
no test coverage detected