From d50b136b38cda779615e20bc3b074673753d77fb Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Thu, 4 Nov 2021 00:51:46 +0100 Subject: [PATCH] Fix video description width --- Shared/Player/VideoDetails.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Shared/Player/VideoDetails.swift b/Shared/Player/VideoDetails.swift index 086d2f60..586ced01 100644 --- a/Shared/Player/VideoDetails.swift +++ b/Shared/Player/VideoDetails.swift @@ -335,7 +335,9 @@ struct VideoDetails: View { VStack(alignment: .leading, spacing: 10) { if let description = video.description { Text(description) + .frame(maxWidth: .infinity, alignment: .leading) .font(.caption) + .padding(.bottom, 4) } else { Text("No description") .foregroundColor(.secondary)