1
0
Fork 0

FIX: Display no data when no API is selected

Dieser Commit ist enthalten in:
jumagura 2023-03-21 02:19:03 -04:00
Ursprung 99c2c2a461
Commit 60d50afc54

Datei anzeigen

@ -11,7 +11,7 @@ export default DiscourseRoute.extend({
}, },
afterModel(model) { afterModel(model) {
if (!model) { if (model === null) {
return this.transitionTo("adminWizardsApi"); return this.transitionTo("adminWizardsApi");
} }
}, },