mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: show untitle for blank page titles (#4505)
This commit is contained in:
parent
cbca2c78ee
commit
1178c3b14d
@ -76,7 +76,7 @@ export class PageStore implements IPageStore {
|
|||||||
page: TPage
|
page: TPage
|
||||||
) {
|
) {
|
||||||
this.id = page?.id || undefined;
|
this.id = page?.id || undefined;
|
||||||
this.name = page?.name || undefined;
|
this.name = page?.name?.trim() === "" ? "" : undefined;
|
||||||
this.description_html = page?.description_html || undefined;
|
this.description_html = page?.description_html || undefined;
|
||||||
this.color = page?.color || undefined;
|
this.color = page?.color || undefined;
|
||||||
this.labels = page?.labels || undefined;
|
this.labels = page?.labels || undefined;
|
||||||
|
Loading…
Reference in New Issue
Block a user