From 9665cfdb76eb3a6b40789b536d77d040d60ab832 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Tue, 29 Nov 2022 11:25:42 +0800 Subject: [PATCH] Better placeholder text --- .../Sources/App/Views/Highlights/HighlightsListCard.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift b/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift index 2bfb14380..a7f218b42 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift @@ -49,7 +49,7 @@ struct HighlightsListCard: View { let isEmpty = highlightParams.annotation.isEmpty Spacer(minLength: 6) - Text(isEmpty ? "Add Notes" : highlightParams.annotation) + Text(isEmpty ? "Add Notes..." : highlightParams.annotation) .lineSpacing(6) .accentColor(.appGraySolid) .foregroundColor(isEmpty ? .appGrayText : .appGrayTextContrast)