Merge pull request #310 from ente-io/capitalization

Fix capitalization of "Shared with"
This commit is contained in:
Neeraj Gupta 2022-06-14 13:35:55 +05:30 committed by GitHub
commit 69546f8cca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -353,7 +353,7 @@ class OutgoingCollectionItem extends StatelessWidget {
: Padding(
padding: EdgeInsets.fromLTRB(0, 4, 0, 0),
child: Text(
"shared with " + sharees.join(", "),
"Shared with " + sharees.join(", "),
style: TextStyle(
fontSize: 14,
color: Theme.of(context).primaryColorLight,