1. 05 Aug, 2020 3 commits
  2. 04 Aug, 2020 3 commits
    • Dorian Johnson's avatar
      build: use static CSS and JS filenames in dev (#534) · 82d843e9
      Dorian Johnson authored
      In production, it's helpful to use content addressing to guarantee cache busting
      when publishing changes.
      
      However, in development, because the server serves a static copy of the
      index.html, that means that changing the Javascript bundle or CSS requires an
      otherwise-unnecessary restart of the server.
      
      This change makes the CSS and JS assets use fixed filenames so that a server
      restart isn't needed.
      
      Downside of this approach is there's now a dev/prod disparity and the config is
      more spread out between files. The positive is we don't need to modify the
      semantics of the server at all.
      82d843e9
    • Tamika Tannis's avatar
      fix: DashboardPage Flag usage; Markdown to render HTML (#535) · 4c5859a5
      Tamika Tannis authored
      * Allow markdown descriptions to display html
      
      * Fix Flag usage on DashboardPage; Lint
      
      * Code cleanup
      4c5859a5
    • Diksha Thakur's avatar
      fix: Fixing EditableSection component (#508) · e5bb6dad
      Diksha Thakur authored
      * Changed tag to div
      
      * check on nativeEvent
      
      * Fixed EditableText propagation
      
      * Fix add new tag button
      
      * Trying to fix tag delete click
      
      * Fix Tag and owner onClick
      
      * Fix clicks on Request Description
      
      * Fix add new owner button
      
      * code cleanup
      
      * modified unit test cases
      
      * Revert changes and moved children  components outside label tag
      
      * Added unit test case
      e5bb6dad
  3. 03 Aug, 2020 2 commits
    • Tamika Tannis's avatar
      feat: Update prog_desc configuration + UI (#527) · dfd91c27
      Tamika Tannis authored
      * Update prog_desc configuration + UI
      
      * Lint
      
      * Lint
      
      * mypy
      
      * Component cleanup; Add types
      
      * Lint fix
      
      * Clean up and fix bug
      
      * Update doc
      
      * Update docs
      
      * Update docs
      
      * Update test
      
      * Lint
      
      * Update python logic
      dfd91c27
    • Allison Suarez Miranda's avatar
      feat: clickable badge style behavior (#529) · 3c974c31
      Allison Suarez Miranda authored
      * looking good, alignment might still be messed up, need to verify
      
      * focused
      
      * more generla styling and added some variables as suggested
      
      * made -height into a variable
      
      * removed unecessary display style
      
      * alpha to variable
      
      * added pressed state styling
      
      * lint fix
      
      * renamed opacity
      
      * added -height
      
      * changed and tested labeltype names
      
      * fixed other labelStyle instances
      3c974c31
  4. 31 Jul, 2020 2 commits
  5. 30 Jul, 2020 2 commits
    • Allison Suarez Miranda's avatar
      feat: making clickable badges (#519) · 94330854
      Allison Suarez Miranda authored
      * setting up for clickable badge component
      
      * logic for search first try on badges
      
      * we now have some really wonky looking clickable badges, don't quite work the way I expected them to yet
      
      * major style changes, work in progress
      
      * updated test on badge list
      
      * lots of changes, functioning cloick and search
      
      * clean up clean up everybody everywhere
      
      * clean up pt 2
      
      * lint
      
      * fix
      
      * fix make sure no config names change
      
      * reverting change to navbar style because not part of this PR
      
      * cleaning up an oopsie
      
      * changed badgelist test to count ClickableBadge rather than Flag
      
      * fixed test to reflect where the _ are replaced now
      
      * commented out test
      
      * moved badge
      
      * updated imports
      
      * removed all style and added pointer cursor
      
      * samll fix to test
      
      * Updated comment to reflect new functionality
      
      * lint issue
      
      * deleted old Badges dir
      
      * fixed test
      
      * fixed import
      
      * applies to all badge styles
      
      * lint
      
      * applied cursor hover to clickable-badge rathern than flag
      
      * added tests for clickable badges
      
      * too many });
      
      * fixed lint issue
      
      * updated tests
      94330854
    • Verdan Mahmood's avatar
  6. 28 Jul, 2020 3 commits
  7. 27 Jul, 2020 1 commit
  8. 24 Jul, 2020 2 commits
  9. 22 Jul, 2020 1 commit
  10. 20 Jul, 2020 1 commit
  11. 17 Jul, 2020 2 commits
  12. 16 Jul, 2020 2 commits
  13. 15 Jul, 2020 1 commit
    • Allison Suarez Miranda's avatar
      fix: replaced aria-label with sr-only to improve accessiblity (#509) · 3a8ecdbd
      Allison Suarez Miranda authored
      * updated all aria-label componets to use sr-only instead, still need to update tests and fix the constants imports
      
      * fixed imports for constants on RequestMetadataForm comp
      
      * another constants import fix
      
      * removed aria-label attribute from tests
      
      * yet another constants fix
      
      * removed the aria-label as well as the sr-only for the add button on the add owner pop up, this is because when selecting the edit button the sr would read edit on Owners, which means that if this option is selected it can be assumed that when the sr reads Add, it will be related to adding an Owner. Trying to have both a sr-only plus the label of the button itself would lead to confusion because i would read add owner and then add, before with aria-hidden it would just hide Add and say add owner, making this not an issue. We could also keep aria-hidden but idk if this also has support gaps
      
      * added newline at end of file
      
      * added newline at end of file
      
      * fixed format issues
      
      * package oopsie
      3a8ecdbd
  14. 14 Jul, 2020 2 commits
  15. 13 Jul, 2020 1 commit
  16. 10 Jul, 2020 1 commit
  17. 09 Jul, 2020 2 commits
    • Diksha Thakur's avatar
      fix: Making description uneditable using config file (#497) · f529671a
      Diksha Thakur authored
      * Making description uneditable using config file
      
      * Table Description Uneditable using regex
      
      * Column Description uneditable
      
      * fixed regex statement
      
      * fixed lint error
      
      * removed print statements
      
      * Adding source to edit button
      
      * Added edit description text
      
      * Added list MatchRules object in configuration
      
      * ignore linting for metadata_utils.py
      
      * addint data type to match rules
      
      * adding data type to match rules
      
      * fixing mypy errors
      
      * restructured logic in metadata_utils
      
      * fixed mypy checks
      
      * fix parse_editable_rule parameters
      
      * Adding unit test cases
      
      * Code cleanup and better comments
      
      * Added documentation
      
      * Modified unit test case
      
      * fixed documentation
      
      * documentation change
      f529671a
    • Tamika Tannis's avatar
      feat: Support markdown for dashboard descriptions (#506) · 276ff528
      Tamika Tannis authored
      * Support markdown for dashboard descriptions
      
      * Code cleanup
      
      * Fix test for build to pass; Need to re-write so this doesn't keep happening
      
      * Fix test for build to pass; Need to re-write so this doesn't keep happening
      276ff528
  18. 07 Jul, 2020 2 commits
  19. 05 Jul, 2020 1 commit
  20. 30 Jun, 2020 2 commits
  21. 29 Jun, 2020 1 commit
  22. 26 Jun, 2020 2 commits
  23. 25 Jun, 2020 1 commit