Вы можете попробовать добавить preserveWhiteSpace
, так как пробел между кнопками - это не поле, а пробел.
@Component({
selector: 'app-employee-list',
templateUrl: './employee-list.component.html',
styleUrls: ['./employee-list.component.css'],
preserveWhitespaces: true
})
export class EmployeeListComponent {
}
Чтобы сделать это через приложение, вы можете сделать:
[…]
"angularCompilerOptions": {
"preserveWhitespaces": true
}
[…]