Skip to content

Commit

Permalink
test fix localstorage max value
Browse files Browse the repository at this point in the history
  • Loading branch information
koplenov authored May 22, 2023
1 parent 092ce30 commit da4bae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion marker/infinity.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace $.$$ {
// отображаем Row
@$mol_mem_key
Pics( index: any ) {
return this.links( index ).reverse().map( record => $mol_state_local.value( record.seo_name + "_content", record ) ).map( data => this.Pic( data ) )
return this.links( index ).reverse().map( record => { return { seo_name: record.seo_name, src: record.src } } ).map( record => $mol_state_local.value( record.seo_name + "_content", record ) ).map( data => this.Pic( data ) )
}

// получаем страницу данных
Expand Down

0 comments on commit da4bae8

Please sign in to comment.