skip to Main Content

Html – Angular select element not binding to enum value

I have the following in my component.ts file: import {Component, OnInit} from '@angular/core'; import {IBook} from "../../models/book.model"; import {ActivatedRoute} from "@angular/router"; import {BooksService} from "../../services/books.service"; import {BookGenre} from "../../enums/book-genre"; @Component({ selector: 'bookstore-edit-book', templateUrl: './edit-book.component.html', styleUrl: './edit-book.component.css' }) export class EditBookComponent…

VIEW QUESTION
Back To Top
Search