fix(core): update

This commit is contained in:
Philipp Kunz 2020-11-05 15:35:31 +00:00
parent 57868de491
commit c40c01b5c8
2 changed files with 5 additions and 2 deletions

View File

@ -41,6 +41,7 @@ export class TagManager {
this.activeLevel.disable();
this.activeLevel = subPageLevel;
this.activeLevel.enable();
return subPageLevel;
}
public revertToBaseLevel() {

View File

@ -38,7 +38,9 @@ export class WebSetup {
/**
* sets a subpage
* @param metaObject
* @param metaObjectArg
*/
public setSubLevel(metaObject: interfaces.IMetaObject) {}
public setSubLevel(metaObjectArg: interfaces.IMetaObject) {
return this.tagManager.setSubPageLevel(metaObjectArg);
}
}