diff options
| author | bobzel <zzzman@gmail.com> | 2025-03-10 14:48:04 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-03-10 14:48:04 -0400 |
| commit | 5bf944035c0ba94ad15245416f51ca0329a51bde (patch) | |
| tree | ed89a9e32adc7046f0b84710d1543f8eb7c59b31 /src/fields | |
| parent | df173b02ffb7e2937d20a02beec1815b3af7c34e (diff) | |
fixed issue with text notes that just have a doc embedded being treated like empty notes..
Diffstat (limited to 'src/fields')
| -rw-r--r-- | src/fields/RichTextField.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/RichTextField.ts b/src/fields/RichTextField.ts index 63ae61c2f..bcef1fefc 100644 --- a/src/fields/RichTextField.ts +++ b/src/fields/RichTextField.ts @@ -25,7 +25,7 @@ export class RichTextField extends ObjectField { } Empty() { - return !(this.Text || this.Data.toString().includes('dashField') || this.Data.toString().includes('align')); + return !(this.Text || this.Data.toString().includes('dashField') || this.Data.toString().includes('dashDoc') || this.Data.toString().includes('align')); } [Copy]() { |
