Uploaded image for project: 'Crucible'
  1. Crucible
  2. CRUC-8451

Add reactions to a line of code

    XMLWordPrintable

Details

    • Our product teams collect and evaluate feedback from a number of different sources. To learn more about how we use customer feedback in the planning process, check out our new feature policy.

    Description

      Feature requested:
      To be able to add reactions (emojis) next to a line of code.

      Context:
      Often the feedback given in code reviews is related to "change requests", "questions" or "things to be re-worked".

      Somehow I feel that the code review process is always sitting on a negative space.

      I'd like to be able to add  quick positive feedback to a nice change on the code.

      I do believe that positive reinforcement provides a better way to create a good mood in the office and in code reviews.

      Current behaviour:
      **

      - 40 var i = 0;
        41
      - 42 for(; i<l; i++) {
      + 42 for(let i; i < arr.length; i++) {
      ╭─────────────────────────────────────────────────────────────╮
      │░▓▓▓▓▓▓░░User name░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│
      ⃒│░▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│
      │░▓▓▓▓▓▓░░😍░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│
      ╰─────────────────────────────────────────────────────────────╯
      - 43   var j = a[i];
      + 43   const j = a[i];
      ╭─────────────────────────────────────────────────────────────╮
      │░▓▓▓▓▓▓░░User name░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│
      │░▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│
      │░▓▓▓▓▓▓░░👍░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│
      ╰─────────────────────────────────────────────────────────────╯

      Desired behaviour:

        - 40 var i = 0;
          41
        - 42 for(; i<l; i++) {
      😍+ 42 for(let i; i < l; i++) {
        - 43   var j = a[i];
      👍+ 43   const j = a[i];

       

       

      Attachments

        Activity

          People

            Unassigned Unassigned
            80f46bc80895 costascarrera-cesar
            Votes:
            1 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated: