Skip to content

Commit

Permalink
Fix theme params access
Browse files Browse the repository at this point in the history
  • Loading branch information
dnischeta committed Aug 1, 2024
1 parent 3e64ee2 commit 3605381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/ThemeParamsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class ThemeParamsPage extends PageComponent {

computeRows() {
return Object
.entries(this.context.getWebApp().themeParams.getState())
.entries(this.context.getWebApp().themeParams)
.map(([title, value]) => ({
title: title
.replace(/[A-Z]/g, (m) => `_${m.toLowerCase()}`)
Expand Down

0 comments on commit 3605381

Please sign in to comment.