Lint
This commit is contained in:
@@ -74,7 +74,7 @@ class Document {
|
|||||||
|
|
||||||
@computed get isEmpty(): boolean {
|
@computed get isEmpty(): boolean {
|
||||||
// Check if the document title has been modified and user generated content exists
|
// Check if the document title has been modified and user generated content exists
|
||||||
return this.text.replace(new RegExp(`^\#$`), '').trim().length === 0;
|
return this.text.replace(new RegExp(`^#$`), '').trim().length === 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@computed get allowSave(): boolean {
|
@computed get allowSave(): boolean {
|
||||||
@@ -149,7 +149,7 @@ class Document {
|
|||||||
if (!this.title) {
|
if (!this.title) {
|
||||||
this.title = DEFAULT_TITLE;
|
this.title = DEFAULT_TITLE;
|
||||||
this.text = this.text.replace(
|
this.text = this.text.replace(
|
||||||
new RegExp(`^\# `),
|
new RegExp(`^# `),
|
||||||
`# ${DEFAULT_TITLE}`
|
`# ${DEFAULT_TITLE}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user