File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ import { ShellCommandComponent } from './shell-command.component';
3838 <shell-command class="mb-2">dotnet tool install -g x</shell-command>
3939 <shell-command class="mb-2">x new {{ template }} {{ project }}</shell-command>
4040
41- <h4 class="py-6 text-center text-xl">In <b class="text-red-700">/{{project}}.Client</b>, Install npm dependencies </h4>
41+ <h4 class="py-6 text-center text-xl">In <b class="text-red-700">/{{project}}.Client</b></h4>
4242 <shell-command class="mb-2">npm install</shell-command>
4343
4444 <h4 class="py-6 text-center text-xl">In <b class="text-red-700">/{{project}}</b>, Create Database</h4>
Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ export class TodoMvcComponent implements OnInit {
7272 toggleCompleted ( todo : Todo ) : void {
7373 this . client . api ( new UpdateTodo ( { ...todo , isFinished : ! todo . isFinished } ) ) . subscribe ( {
7474 next : ( updated ) => {
75- console . log ( 'Updated todo:' , updated ) ;
7675 const index = this . todos . findIndex ( t => t . id === updated . id ) ;
7776 if ( index !== - 1 ) {
7877 this . todos [ index ] = updated ;
You can’t perform that action at this time.
0 commit comments