-
Notifications
You must be signed in to change notification settings - Fork 732
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
renamed currentFacilityId #10807
renamed currentFacilityId #10807
Conversation
@@ -66,7 +66,7 @@ export default { | |||
store.commit('SET_DATA_LOADING', true); | |||
store.commit('SET_CLASS_LIST', []); // Reset the list if we're loading a new one | |||
return ClassroomResource.fetchCollection({ | |||
getParams: { parent: facilityId || store.getters.currentFacilityId, role: 'coach' }, | |||
getParams: { parent: facilityId || store.getters.userFacilityId, role: 'coach' }, |
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.
hi there @Ghat0tkach! my apologies if this is something you're already aware of, but i wanted to be sure that you saw there is a slight merge conflict in your PR files that will need to get resolved before this can be reviewed.
while you were working on your PR, we changed the underlying code here in pluginModule.js
in Coach
to be
getParams: { parent: activeFacilityId, role: 'coach' }
and removed the reference to currentFacilityId
, so this file no longer requires the changes you introduced. you can see that change reflected in the latest version of develop
.
once you remove your change here & allow this line to reflect the current state of develop, i think this PR should be all ready for review! at that point, please feel free to add me (and/or @MisRob) as reviewers in the "Reviewers" section on the righthand side, and we'll get to the review as soon as possible 🙂
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 i saw but had no idea how to resolve them . Thanks again!!
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.
i do apologise in order to resolve conflicts , i tried to fetch and ultimately it closed this PR .
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.
it looks like you may have force-pushed your branch to be completely match develop
, rather than just the pluginModule.js
file, which means the changes you intended to introduce here might have gotten lost. you can reopen this PR from its new base, but you may have to reapply the changes you made.
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 ,will fix this asap
32911fd
to
726134e
Compare
Summary
This PR fixes #10763
Renamed the currentFacilityId to userFacilityId as instructed all with the help of @thanksameeelian
References
…
Reviewer guidance
…
Testing checklist
PR process
Reviewer checklist
yarn
andpip
)