File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
1
## Parse Dashboard Changelog
2
2
3
+ ### 1.0.13
4
+
5
+ * Fix log retrieval, thanks to [ Jérémy Thiry] ( https://github.com/poltib )
6
+ * Improved GeoPoint editor and ESC button in editors, thanks to [ Sam Schooler] ( https://github.com/samschooler )
7
+ * Add push status page to dashboard, thanks to [ Jeremy Pease] ( https://github.com/JeremyPlease )
8
+
3
9
### 1.0.12
4
10
5
11
* Fix minor style issues
Original file line number Diff line number Diff line change 8
8
" Class Level Permissions Editor" ,
9
9
" Pointer Permissions Editor" ,
10
10
" Send Push Notifications" ,
11
- " Logs Viewer"
11
+ " Logs Viewer" ,
12
+ " Push Status Page"
12
13
],
13
14
"description" : " The Parse Dashboard" ,
14
15
"keywords" : [
17
18
],
18
19
"homepage" : " https://github.com/ParsePlatform/parse-dashboard" ,
19
20
"bugs" : " https://github.com/ParsePlatform/parse-dashboard/issues" ,
20
- "version" : " 1.0.12 " ,
21
+ "version" : " 1.0.13 " ,
21
22
"repository" : {
22
23
"type" : " git" ,
23
24
"url" : " https://github.com/ParsePlatform/parse-dashboard"
Original file line number Diff line number Diff line change @@ -144,8 +144,11 @@ let getPushName = (pushData) => {
144
144
try {
145
145
payload = JSON . parse ( payload ) ;
146
146
} catch ( e ) { }
147
- if ( payload ) {
148
- return payload . alert ? payload . alert : payload ;
147
+ if ( payload ) {
148
+ if ( typeof payload . alert === 'string' ) {
149
+ return payload . alert ;
150
+ }
151
+ return payload . alert ? JSON . stringify ( payload . alert ) : payload ;
149
152
}
150
153
}
151
154
}
You can’t perform that action at this time.
0 commit comments