Skip to content

Commit

Permalink
Update realworld.view.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin authored Dec 19, 2022
1 parent ea3b2de commit 29d80fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions realworld.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ namespace $.$$ {

@ $mol_mem
section( next? : string | undefined ) {
return this.$.$mol_state_arg.value( 'section' , next )
return this.$.$mol_state_arg.value( 'section' , next ) ?? ''
}

person( next? : string | undefined ) {
return this.$.$mol_state_arg.value( 'person' , next )
return this.$.$mol_state_arg.value( 'person' , next ) ?? ''
}

pages() {
Expand Down

0 comments on commit 29d80fc

Please sign in to comment.