You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Correct way is to use != instead of == in line 553.
if closing != none {
closing = default-closing(lang_data) // Attached: Curriculum Vitae
}
The text was updated successfully, but these errors were encountered:
dhruvhaldar
changed the title
Bug : Using closing: none still shows the closing text.
[BUG] Using closing: none still shows the closing text.
Dec 18, 2024
I believe this is intentional behavior. Passing in none should show a default closing text, but passing [] or removing the closing field completely should show nothing.
If this is not intuitive I'm happy to make API changes.
Issue
Using
closing: none
still shows the closing text.Proposed Solution
Correct way is to use
!=
instead of==
in line 553.The text was updated successfully, but these errors were encountered: