mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
fix: page title not displaying (#4513)
This commit is contained in:
committed by
GitHub
parent
87610399c4
commit
915ea8a81c
@@ -76,7 +76,7 @@ export class PageStore implements IPageStore {
|
||||
page: TPage
|
||||
) {
|
||||
this.id = page?.id || undefined;
|
||||
this.name = page?.name?.trim() === "" ? "" : undefined;
|
||||
this.name = page?.name;
|
||||
this.description_html = page?.description_html || undefined;
|
||||
this.color = page?.color || undefined;
|
||||
this.labels = page?.labels || undefined;
|
||||
|
||||
Reference in New Issue
Block a user