This commit is contained in:
Niels Lyngsø
2025-02-04 16:32:15 +01:00
parent 00b92d8a57
commit acb3f01f69
2 changed files with 1 additions and 4 deletions

View File

@@ -69,9 +69,6 @@ export abstract class UmbBlockEntriesContext<
// Public methods:
blockTypeOf(contentTypeKey: string) {
return this._manager!.blockTypeOf(contentTypeKey);
}
layoutOf(contentKey: string) {
return this._layoutEntries.asObservablePart((source) => source.find((x) => x.contentKey === contentKey));
}

View File

@@ -487,6 +487,7 @@ export abstract class UmbBlockEntryContext<
#gotManager() {
this.#observeVariantId();
this.#observeBlockType();
this.#observeContentData();
this.#observeSettingsData();
this.#observeReadOnlyState();
@@ -497,7 +498,6 @@ export abstract class UmbBlockEntryContext<
#gotEntries() {
this.#updateCreatePaths();
this.#observeLayout();
this.#observeBlockType();
this.observe(
this._entries?.workspacePath,