Skip to content

Commit

Permalink
fix text color and add index to loop item
Browse files Browse the repository at this point in the history
  • Loading branch information
sickelap committed Nov 6, 2023
1 parent d31bd45 commit d4a4e1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/layouts/sharing/PhotosShared.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class GroupHeader extends Component {
<Text size="md" weight="bold">
{displayName}
</Text>
<Text size="xs" color="gray" style={{ display: "flex", alignItems: "center" }}>
<Text size="xs" color="dimmed" style={{ display: "flex", alignItems: "center" }}>
<Polaroid size={16} style={{ marginRight: 5 }} />
{this.props.isSharedToMe
? `shared ${this.props.group.photos.length} photos with you`
Expand Down Expand Up @@ -62,6 +62,7 @@ export class PhotosShared extends Component {
) : (
this.props.photosGroupedByUser.map(group => (
<PhotoListView
key={group.key}
title="Photos"
loading={this.props.fetchedPhotosetType !== photosetType}
icon={<Photo size={50} />}
Expand Down

0 comments on commit d4a4e1b

Please sign in to comment.