Skip to content

Commit 46935d0

Browse files
starbassmaTomWFox
authored andcommitted
Correct inappropriate error message when no target audience is selected. (#1052)
* Correct inappropriate error message when no target audience is selected * Update CHANGELOG.md
1 parent a84a58d commit 46935d0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
## Parse Dashboard Changelog
2-
* _Contributing to this repo? Add info about your change here to be included in next release_
32

43
### master
54
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/1.3.0...master)
65

6+
* _Contributing to this repo? Add info about your change here to be included in next release_
7+
* Fix: Correct inappropriate error message when no target audience is selected (#1052), thanks to [Bouimadaghene](https://github.com/starbassma)
8+
79
### 1.3.0
810
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/1.2.0...1.3.0)
911

src/dashboard/Push/PushNew.react.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ class PushNew extends DashboardView {
729729
let invalidInputMessages = [];
730730

731731
if (!this.state.audienceId) {
732-
emptyInputMessages.push('you need select an audience');
732+
emptyInputMessages.push('target audience');
733733
}
734734

735735
// when number audience size is 0

0 commit comments

Comments
 (0)