-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backport of UI: Remove Wizard to 1.12.x (#19220) #19287
Backport of UI: Remove Wizard to 1.12.x (#19220) #19287
Conversation
hashishaw
commented
Feb 22, 2023
- Remove UI Wizard temporarily [OIDC provider: hide "Choosing where to go" splash when authorizing an application #19000]
* Remove UI Wizard temporarily [GH-19000]
@@ -4,7 +4,7 @@ import { singularize } from 'ember-inflector'; | |||
import ListRoute from 'vault/mixins/list-route'; | |||
|
|||
export default Route.extend(ListRoute, { | |||
wizard: service(), | |||
store: service(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The store injection was already present on 1.13+ so perhaps this was not required to inject on routes previous to Ember4?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes that's correct. Ember Data was automatically injecting it behind the scenes which has since been removed.
@@ -24,8 +24,7 @@ | |||
<MessageError @model={{this.model}} @errorMessage={{this.errorMessage}} @errors={{this.errors}} /> | |||
{{#if this.showEnable}} | |||
<FormFieldGroups | |||
@model={{this.mountModel}} | |||
@onChange={{this.onTypeChange}} | |||
@model={{@mountModel}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❌
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀