Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 11:52:54 +01:00
Ensure submissions model has id
Dieser Commit ist enthalten in:
Ursprung
94910e25f0
Commit
21e235be40
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -6,7 +6,7 @@ export default Discourse.Route.extend({
|
|||
},
|
||||
|
||||
afterModel(model, transition) {
|
||||
if (transition.intent.name !== 'adminWizardSubmissions' && model.length > 0) {
|
||||
if (transition.intent.name !== 'adminWizardSubmissions' && model[0] && model[0].id) {
|
||||
this.transitionTo('adminWizardSubmissions', model[0].id);
|
||||
}
|
||||
},
|
||||
|
|
Laden …
In neuem Issue referenzieren