fix: trim whitespace prior to checking if line is empty

This commit is contained in:
Matthew Ryan Dillon 2024-08-28 14:39:04 -04:00
parent da722f3bff
commit 49ff2b33aa

View file

@ -73,7 +73,7 @@ fn process_text(
let mut arr = input_text.value.lines().collect::<Vec<_>>();
if needs_strip.value {
arr.retain(|&x| !x.is_empty());
arr.retain(|&x| !x.trim().is_empty());
needs_strip.value = false;
}