An error occurred fetching the project authors.
  1. 18 Nov, 2020 1 commit
  2. 17 Nov, 2020 1 commit
  3. 02 Sep, 2020 1 commit
    • Alexander Turinske's avatar
      Implement empty state on security dashboard · 90f2fbc7
      Alexander Turinske authored
      - previously there was an empty state that showed on the
        security dashboards
      - when I migrated the dashboards to use the security
        charts component, this feature was missed
      - add the empty state back in for the security dashboards
      - update tests
      90f2fbc7
  4. 20 Aug, 2020 1 commit
    • Mark Florian's avatar
      Disable default export rules · 600155b6
      Mark Florian authored
      This is part of the work to implement the consensus reached in the
      [RFC][1] to prefer named exports over defalt exports.
      
      Future iterations will migrate existing default exports to named
      exports.
      
      The bulk of the changes in this commit were performed with the following
      script:
      
      ```bash
      set -u
      
      changed-files()
      {
          local trunk="origin/master"
          local file=
          local committed_files=$(git diff "$trunk"... --numstat \
              | awk '/\.(js|vue)$/{ print $3 }')
          local changed_files=$(git diff --numstat \
              | awk '/\.(js|vue)$/{ print $3 }')
          for file in ${committed_files[@]} ${changed_files[@]}; do
              if [ -f "$file" ]; then
                  echo "$file"
              fi
          done
      }
      
      git grep -lz "import/prefer-default-export" -- '**/*.js' \
          | xargs -0 perl -0pi -e \
          "s/[^\n]*eslint-disable[^\n]*"\
      "import\/prefer-default-export[^\n]*\n//mgs"
      
      git grep -lz "rfcs/-/issues/20" -- '**/*.js' \
          | xargs -0 perl -0pi -e \
          "s/[^\n]*rfcs\/-\/issues\/20[^\n]*\n//mgs"
      
      yarn prettier --write $(changed-files)
      ```
      
      The script is [idempotent][2], to help make it easier to keep
      up-to-date.
      
      [1]: https://gitlab.com/gitlab-org/frontend/rfcs/-/issues/20
      [2]: https://en.wikipedia.org/wiki/Idempotence
      600155b6
  5. 25 Jun, 2020 1 commit
  6. 18 May, 2020 1 commit
    • Savas Vedova's avatar
      Add project filter · f41fd4b4
      Savas Vedova authored
      - To instance level dashboard and
      - To group level dashboard
      - Update queries to reflect this filter
      - Add tests
      - Rename constants to helpers
      f41fd4b4
  7. 04 May, 2020 1 commit
  8. 03 Apr, 2020 1 commit
    • Sam Beckham's avatar
      Uses graphQL on the vulnerability list page · d884f2bf
      Sam Beckham authored
      - Swaps out the REST endpoints for GraphQL data
      - Uses the observer component to lazily load extra vulnerabiltiies
      - Hooks up the error and loading states
      - WIP: Starts work on the tests
      d884f2bf