diff --git a/polygerrit-ui/app/elements/shared/gr-linked-chip/gr-linked-chip.js b/polygerrit-ui/app/elements/shared/gr-linked-chip/gr-linked-chip.js index c6a5e4e78a..bfba1c410c 100644 --- a/polygerrit-ui/app/elements/shared/gr-linked-chip/gr-linked-chip.js +++ b/polygerrit-ui/app/elements/shared/gr-linked-chip/gr-linked-chip.js @@ -30,11 +30,11 @@ }, }, - _getBackgroundClass: function(transparent) { + _getBackgroundClass(transparent) { return transparent ? 'transparentBackground' : ''; }, - _handleRemoveTap: function(e) { + _handleRemoveTap(e) { e.preventDefault(); this.fire('remove'); }, diff --git a/polygerrit-ui/app/elements/shared/gr-linked-chip/gr-linked-chip_test.html b/polygerrit-ui/app/elements/shared/gr-linked-chip/gr-linked-chip_test.html index eefc79d70a..3182653005 100644 --- a/polygerrit-ui/app/elements/shared/gr-linked-chip/gr-linked-chip_test.html +++ b/polygerrit-ui/app/elements/shared/gr-linked-chip/gr-linked-chip_test.html @@ -34,21 +34,21 @@ limitations under the License.