Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-04-10[skip ci] Convert panel related class names to cardClement Ho
2017-06-30Add issuable-list class to shared mr/issue lists to fix new responsive layouttauriedavis
2017-01-28Remove border from issues, todos and MR pagesOswaldo Ferreira
2017-01-28Refactor code when rendering a collection of issuesBerna Castro
2017-01-28Don't group projects on dashboard#issuesBerna Castro
2016-12-01Save a query on issue and MR listsSean McGivern
`any?` on an AR relation performs a `SELECT COUNT`, which we don't need. 1. We are very likely to have issues or MRs, so the `SELECT COUNT` is often unnecessary. 2. Even where there are no items returned, the overhead of the `SELECT *` instead of `SELECT COUNT` is relatively small. Calling `to_a` on the relation lets us use `Enumerable#any?`, which will return immediately if there are objects returned.
2016-11-18Added empty state svg and set up blank conditionalLuke "Jared" Bennett
Added new spec step Added empty state to dashboard Split empty and filtered empty states Moved empty_state icons into their own folder and DRY up empty state html Fixed failing spec Added to groups page Review changes
2016-06-06Fix styleSean McGivern
- `reorder(nil)` is better than `reorder('')` - Only use ASCII in comments
2016-06-06Don't try to count a relation with aliasesSean McGivern
Work around ActiveRecord count and column aliases issue as described at: <https://github.com/rails/rails/issues/15138#issuecomment-61325080> AR doesn't promise that `#count` (which is called by `#any?`) will work for relations using `#select`, which means we need a workaround instead.
2016-02-26Refactor styles for issues listDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-12-02Add "New X" link to dashboard/group milestone project-specific issue/MR panelsDouwe Maan
2015-02-14Upgrade to Rails 4.1.9Vinnie Okada
Make the following changes to deal with new behavior in Rails 4.1.2: * Use nested resources to avoid slashes in arguments to path helpers.
2014-05-31Add old ui-box style to panelsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-05-29Replace ui-box title with panel-headingDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-05-29Replace ui-box with panel.panel-defaultDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-02-20Refactor scssDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-12-24Use new ui-box classesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-08-15More specific empty state message wordingHenry Smith
I've changed all the instances of "Nothing to show here" to specifically mention the name of the entity of which there are none to show. This makes for a slightly smoother reading experience.
2013-08-07Increase amount of search results for issues, mr, projectsDmitriy Zaporozhets
2013-08-06More compact lists for dashboard issues, mrDmitriy Zaporozhets
2013-08-06Dashboard/Group issues and mr pages refactoringDmitriy Zaporozhets