Skip to content

Commit 3bb6d7f

Browse files
ssamuliflovilmart
authored andcommitted
Scheduled jobs message (#740)
Added on the empty Scheduled Jobs page a message that notifies about jobs not being run by parse-server but requires further setup.
1 parent 9227872 commit 3bb6d7f

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
### NEXT RELEASE
44

55
* _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
67
* Feature: When editing Object or Array fields the data is displayed in a prettier format and the textarea is resizable
78
* Fix: Display bug on safari when table has empty cells ('')
89
* Feature: UI for managing push audiences, thanks to [Davi Macedo](https://github.com/davimacedo)

src/dashboard/Data/Jobs/Jobs.react.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,18 @@ export default class Jobs extends TableView {
192192
return (
193193
<EmptyState
194194
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>
196207
icon='cloud-happy' />
197208
);
198209
} else {

0 commit comments

Comments
 (0)