0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-22 17:30:29 +01:00

FIX: prevent error if no categories are passed (#72)

Dieser Commit ist enthalten in:
Faizaan Gagan 2021-02-22 14:41:18 +05:30 committet von GitHub
Ursprung fed1beb4ed
Commit 19cc7a7365
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -30,7 +30,9 @@ export default WizardFieldValidator.extend({
@discourseComputed('validation.categories')
validationCategories(categoryIds) {
return categoryIds.map(id => this.site.categoriesById[id]);
if (categoryIds) return categoryIds.map(id => this.site.categoriesById[id]);
return A();
},
@discourseComputed('validationCategories')