0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-09 20:02:54 +01:00

FIX: Show empty log data when no wizard is selected

Dieser Commit ist enthalten in:
jumagura 2022-12-27 12:28:58 -04:00
Ursprung 082139cd97
Commit 8f42268e88

Datei anzeigen

@ -7,6 +7,12 @@ export default DiscourseRoute.extend({
return CustomWizardLogs.list(params.wizardId);
},
afterModel(model) {
if (model === null) {
return this.transitionTo("adminWizardsLogs");
}
},
setupController(controller, model) {
controller.setProperties({
wizard: model.wizard,