File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 3
3
### NEXT RELEASE
4
4
5
5
* _ Contributing to this repo? Add info about your change here to be included in next release_
6
+ * Fix: Added on the empty Scheduled Jobs page a message that notifies about jobs not being run by parse-server but requires further setup
6
7
* Feature: When editing Object or Array fields the data is displayed in a prettier format and the textarea is resizable
7
8
* Fix: Display bug on safari when table has empty cells ('')
8
9
* Feature: UI for managing push audiences, thanks to [ Davi Macedo] ( https://github.com/davimacedo )
Original file line number Diff line number Diff line change @@ -192,7 +192,18 @@ export default class Jobs extends TableView {
192
192
return (
193
193
< EmptyState
194
194
title = 'Cloud Jobs'
195
- description = 'Scheduling jobs is not supported on parse-server'
195
+ description =
196
+ < div >
197
+ < p > { 'On this page you can create JobSchedule objects.' } </ p >
198
+ < br />
199
+ < p >
200
+ { "Be noted that " }
201
+ < b > { "parse-server doesn't schedule or run them. " } </ b >
202
+ { "Please take a look at the " }
203
+ < a href = "http://docs.parseplatform.org/parse-server/guide/#jobs" > { 'docs' } </ a >
204
+ { " on how to do that." }
205
+ </ p >
206
+ </ div >
196
207
icon = 'cloud-happy' />
197
208
) ;
198
209
} else {
You can’t perform that action at this time.
0 commit comments