File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ class Local extends Config {
233
233
234
234
let topics = this.get("topics");
235
235
for (let i = 0; i < topics.length; i++) {
236
- if (topics[i]['$id'] == props['$id']) {
236
+ if (topics[i]['$id'] === props['$id']) {
237
237
topics[i] = props;
238
238
this.set("topics", topics);
239
239
return;
Original file line number Diff line number Diff line change @@ -392,7 +392,7 @@ const questionsPushMessagingTopics = [
392
392
{
393
393
type: "input",
394
394
name: "override",
395
- message: 'What you like to override existing topics? This can lead to loss of data! Type "YES" to confirm.'
395
+ message: 'Would you like to override existing topics? This can lead to loss of data! Type "YES" to confirm.'
396
396
}
397
397
]
398
398
You can’t perform that action at this time.
0 commit comments