Commit 714cff8f authored by Andrii Chyrskyi's avatar Andrii Chyrskyi
Browse files

Merge pull request #2911 from goalgorilla/bugfix/3277686-previewer-username-bypass-access

Issue #3277686 by chmez, agami4: Bypass access to display username
parent 88ccd28a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -125,6 +125,9 @@
                "Revert: As a user I should receive an email confirmation when I enroll in an event": "https://www.drupal.org/files/issues/2022-05-03/socialbase-revert_accidentally_merged_and_released_changes_when_distro_pr_was_still_open-3273222-8.patch",
                "Make link attributes in profile compact teaser expandable": "https://www.drupal.org/files/issues/2022-04-26/socialbase-compact-profile-link-attributes-3275461-3.patch"
            },
            "drupal/socialblue": {
                "Add primary color on hover to the user name on the profile preview modal": "https://www.drupal.org/files/issues/2022-05-03/socialblue-previewer-username-hover-color-3278142-3.patch"
            },
            "drupal/update_helper": {
                "3248189: Symfony 4.4 event dispatcher parameter order change": "https://www.drupal.org/files/issues/2021-11-08/symfony-4-4-event-dispatcher-parameter-order-change-3248189-2.patch"
            },
+2 −1
Original line number Diff line number Diff line
@@ -46,7 +46,8 @@
  height: auto;
  max-height: 96px;
}
.teaser-profile-preview .field--name-uid a {
.teaser-profile-preview .field--name-uid .field--item,
.teaser-profile-preview .field--name-uid .field--item a {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 22px;
+1 −1
Original line number Diff line number Diff line
{"version":3,"sourceRoot":"","sources":["social_profile_preview.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;AAGF;EACE;EACA;;;AAIJ;EACE;;AAEA;EACE;;AAGF;AAAA;EAEE;;AAGF;EACE;;AAEA;EACE;;AAKF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAMJ;EACE;EACA;EACA;;AAKF;EACE;EACA;EACA;EACA;;AAMA;EACE;;AAGF;EACE;EACA;;AAKN;EACE;;AAIA;EACE;EACA;;AAGF;EACE;EACA;;;AAMN;EACE;IACE;;EAEF;IACE","file":"social_profile_preview.css"}
 No newline at end of file
{"version":3,"sourceRoot":"","sources":["social_profile_preview.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;AAGF;EACE;EACA;;;AAIJ;EACE;;AAEA;EACE;;AAGF;AAAA;EAEE;;AAGF;EACE;;AAEA;EACE;;AAKF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAMJ;EACE;EACA;EACA;;AAMA;AAAA;EAEE;EACA;EACA;EACA;;AAOF;EACE;;AAGF;EACE;EACA;;AAKN;EACE;;AAIA;EACE;EACA;;AAGF;EACE;EACA;;;AAMN;EACE;IACE;;EAEF;IACE","file":"social_profile_preview.css"}
 No newline at end of file
+8 −5
Original line number Diff line number Diff line
@@ -58,6 +58,8 @@
  }

  .field--name-uid {
    .field--item {
      &,
      a {
        font-size: 1.125rem;
        font-weight: bold;
@@ -65,6 +67,7 @@
        color: #4d4e4d;
      }
    }
  }

  .field--name-field-profile-self-introduction {
    .field--item {
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ content:
    settings: {  }
    third_party_settings: {  }
  uid:
    type: entity_reference_label
    type: social_profile_preview_username
    weight: 1
    region: content
    label: visually_hidden
Loading