Remove unused isOnlyTitle

This commit is contained in:
Tom Moor
2023-07-03 12:16:04 -04:00
parent 3c2e7b5b63
commit 0aabcb8d22
2 changed files with 4 additions and 11 deletions

View File

@@ -122,11 +122,6 @@ export default class Document extends ParanoidModel {
return this.template ? "template" : "document";
}
@computed
get isOnlyTitle(): boolean {
return !this.text.trim();
}
@computed
get modifiedSinceViewed(): boolean {
return !!this.lastViewedAt && this.lastViewedAt < this.updatedAt;