- Dec 13, 2019
-
-
GitLab Bot authored
-
- Dec 11, 2019
-
-
GitLab Bot authored
-
- Nov 15, 2019
-
-
GitLab Bot authored
-
- Sep 27, 2019
-
-
GitLab Bot authored
-
- Sep 14, 2019
-
-
GitLab Bot authored
-
- Aug 26, 2019
-
-
Patrick Derichs authored
Call QuickActionsService on Note update Add support for notes which just contain commands after editing Return http status gone (410) if note was deleted Temporary frontend addition so it is not failing when a note is deleted Move specs to shared examples Fix rubocop style issue Deleting note on frontend when status is 410 Use guard clause for note which got deleted Simplified condition for nil note This method should no longer be called with nil note Refactoring of execute method to reduce complexity Move errors update to delete_note method Note is now deleted visually when it only contains commands after update Add expectation Fix style issues Changing action to fix tests Add tests for removeNote and update deleteNote expectations
-
- Aug 07, 2019
-
-
Heinrich Lee Yu authored
Send a `persist_filter: false` param to backend when opening links to notes and auto-switching to show all notes
-
- Jul 15, 2019
-
-
Heinrich Lee Yu authored
eTagPoll may not be initialized yet when we save a note. Polling is initialized only after discussions are loaded
-
- Jul 10, 2019
-
-
Winnie Hellmann authored
-
Winnie Hellmann authored
-
- Jul 05, 2019
-
-
Winnie Hellmann authored
-
- Jul 02, 2019
-
-
Winnie Hellmann authored
-
- May 07, 2019
-
-
Winnie Hellmann authored
-
Paul Slaughter authored
- Adds color and a tooltip to describe this new behavior - Does not resolve if discussion is already resolved - Adds an action `resolveDiscussion` to simplify `toggleResolveNote` - Updates docs https://gitlab.com/gitlab-org/gitlab-ce/issues/54405
-
- May 01, 2019
-
-
Brandon Labuschagne authored
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
-
- Feb 18, 2019
-
-
Constance Okoghenun authored
When converting a comment to a discussion if the "Cancel" button is used to exit the new discussion note, the comment would revert back to its initial state
-
- Feb 14, 2019
-
-
Heinrich Lee Yu authored
Sets `updated_at` so that the transformed note is returned together with the new reply
-
- Feb 06, 2019
-
-
Heinrich Lee Yu authored
-
- Jan 25, 2019
-
-
Oswaldo Ferreir authored
1. Presents the system error message when available, when applying suggestions 2. Adjusts target branch updates affecting MRs pointing to it when there are previously created suggestions in the MR. We just need to compare the HEAD shas from position and MR source branch.
-
- Dec 13, 2018
-
-
Oswaldo Ferreir authored
-
- Dec 08, 2018
-
-
André Luís authored
-
- Nov 27, 2018
-
-
Phil Hughes authored
Improve the renderign of new and existing discussions by reducing the number of watchers on each object & array. Previously every discussion change would trigger an update for every discussion component. Also tidied up some components to get them closer to our docs. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/51506
-
- Nov 14, 2018
-
-
Phil Hughes authored
This caused many pain points when working with it. Part of the data was camel cased the other snake case. Other parts where snake case & then getting converted in components, this conversion has the potential for leaking memory. This changes that & makes it consistent with what it returned from the API, snake case.
-
- Nov 09, 2018
-
-
Phil Hughes authored
-
Phil Hughes authored
-
Phil Hughes authored
Fixed duplicate TaskList requests being made
-
Phil Hughes authored
This improves the initial rendering performance of notes by only creating a new TaskList for the whole app, rather than on a per-note component basis.
-
- Nov 05, 2018
-
-
Felipe Artur authored
-
- Oct 23, 2018
-
-
Oswaldo Ferreir authored
-
- Oct 06, 2018
-
-
- Sep 21, 2018
-
-
Fixed toggling new notes caused by not returning the stores discussion
-
We now use the returned discussion instead of re-fetching all of the discussions and filtering out the ones we don't need. This speeds up the process of creating a diff discussions by saving us another API request before we can render the discussion
-
- Sep 13, 2018
-
-
Phil Hughes authored
Instead of relying on a global method, we now emit an event on the MR widget that tells it to check the status
-
- Sep 12, 2018
-
-
Phil Hughes authored
After resolving a discussion on a merge request page the merge request widget state would not get updated meaning users would need to refresh the page to merge (if that option is enabled in the projects settings) https://gitlab.com/gitlab-org/gitlab-ce/issues/42882
-
- Sep 07, 2018
-
-
Tim Zallmann authored
-
Tim Zallmann authored
-
Tim Zallmann authored
-
Tim Zallmann authored
-
- Jul 10, 2018
-
-
Filipa Lacerda authored
Discussions were being toggled by jquery DOM querying them and toggling visibility but in vue, only the open discussions will be in the DOM Fix includes: - Adds a getter to the store to get the expanded discussions - Adds an action to collapse a discussion - When the user clicks the button, all data needed is now accessible through a getter and we can dispatch an action to toggle the discussion within the state, instead of showing/hiding with jQuery - Removes hardcoded properties Resolves #48237
-
- Jul 09, 2018
-
-
Tim Zallmann authored
This updates only the actual new discussion and not the full tree , which leads to a very costly full rerender
-