Skip to content

Commit 9698c72

Browse files
authored
showing a message when no locale is setup (#1685)
1 parent 63cab5b commit 9698c72

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/dashboard/Push/PushNew.react.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,13 @@ class PushNew extends DashboardView {
597597
})}
598598
</div>
599599
{ !this.state.loadingLocale && this.state.availableLocales.length === 0 ?
600-
null :
600+
<a
601+
href="https://github.com/parse-community/parse-dashboard#configuring-localized-push-notifications"
602+
style={{ color: '#169CEE'}}
603+
target='_blank'
604+
>
605+
Please follow this guide to setup the push locales feature
606+
</a> :
601607
<Button
602608
progress={this.state.loadingLocale}
603609
disabled={this.state.availableLocales.length === 0}

0 commit comments

Comments
 (0)