Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleoflqj committed Dec 14, 2024
1 parent dfea1e3 commit a0ffdb6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/config/StringView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ struct StringView: View, OptionViewProtocol {
get: { value as! String },
set: { value = $0 }
)
).multilineTextAlignment(label.isEmpty ? .leading : .trailing) // Leading for List item, trailing for String option.
)
// Leading for List item, trailing for String option.
.multilineTextAlignment(label.isEmpty ? .leading : .trailing)
}
}
}

0 comments on commit a0ffdb6

Please sign in to comment.