Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Mobile
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
244
Merge Requests
13
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Minds
Minds Mobile
Compare Revisions
26379d283bcdc4c48d5a9e58876b845086034d38...15315a65049d72be38a6f6a05488e380c4433818
Source
15315a65049d72be38a6f6a05488e380c4433818
...
Target
26379d283bcdc4c48d5a9e58876b845086034d38
Compare
Commits (2)
(fix) notification key repeated in some cases
· e3eb4491
Martin Santangelo
authored
37 minutes ago
e3eb4491
Merge branch 'fix/notifications-repeated-key' into release/3.11.0
· 15315a65
Martin Santangelo
authored
32 minutes ago
15315a65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/notifications/NotificationsScreen.js
View file @
15315a65
...
...
@@ -161,7 +161,7 @@ export default class NotificationsScreen extends Component {
/**
* Key extractor
*/
keyExtractor
=
(
item
,
index
)
=>
`
${
item
.
time_created
}
:
${
item
.
from
.
guid
}
:
${
item
.
entity
?
item
.
entity
.
guid
:
index
}
`
keyExtractor
=
(
item
,
index
)
=>
`
${
item
.
time_created
}
:
${
item
.
from
.
guid
}
:
${
item
.
entity
?
item
.
entity
.
guid
+
index
:
index
}
`
/**
* Clear and reload
...
...
This diff is collapsed.