diff --git a/src/components/utils/PageBase.js b/src/components/utils/PageBase.js index 30ee233..87ef107 100644 --- a/src/components/utils/PageBase.js +++ b/src/components/utils/PageBase.js @@ -32,6 +32,10 @@ class PageBase { this.label = appName.replace(/(appName:|["'])/g, '')?.trim() } } + + setName(name) { + this.name = name + } } module.exports = PageBase