1. 14 Mar, 2016 6 commits
  2. 13 Mar, 2016 8 commits
  3. 12 Mar, 2016 24 commits
  4. 11 Mar, 2016 2 commits
    • Jacob Schatz's avatar
      Merge branch 'fix_responsive_layout_bug' into 'master' · 491d0ae1
      Jacob Schatz authored
      Fix responsive bug top navigation
      
      Hi,
      
      I have found and fixed a minor layout bug (responsive)
      
      This is the situation before the fix:
      ![before](/uploads/55bf61a64fb49a763c5f8381bf46d390/before.png)
      
      And this is the situation after the fix:
      ![after](/uploads/33ba091156d404e52c41f134121c59f0/after.png)
      
      See merge request !3190
      491d0ae1
    • Robert Speicher's avatar
      Disallow blank (non-null) values for a Note's `line_code` attribute · 01f6db4f
      Robert Speicher authored
      It's unclear how these blank values got added, but GitLab.com had a few:
      
      ```
      irb(main):002:0> Note.where("line_code IS NOT NULL AND line_code = ''").count
      => 439
      ```
      
      We've added a migration to convert any existing records to use a NULL
      value when blank, and updated Note to set blank values to nil before
      validation.
      01f6db4f