Commit 1f614f82 authored by Jarek Ostrowski's avatar Jarek Ostrowski
parent c6a57cc1
...@@ -149,14 +149,13 @@ export default { ...@@ -149,14 +149,13 @@ export default {
<span class="commit-row-message d-block d-sm-none">&middot; {{ commit.short_id }}</span> <span class="commit-row-message d-block d-sm-none">&middot; {{ commit.short_id }}</span>
<button <gl-button
v-if="commit.description_html && collapsible" v-if="commit.description_html && collapsible"
class="text-expander js-toggle-button" class="js-toggle-button"
type="button" size="small"
icon="ellipsis_h"
:aria-label="__('Toggle commit description')" :aria-label="__('Toggle commit description')"
> />
<gl-icon :size="12" name="ellipsis_h" />
</button>
<div class="committer"> <div class="committer">
<a <a
......
---
title: Update commit toggle description button to gl-button
merge_request: 40524
author:
type: changed
...@@ -24,8 +24,7 @@ describe('diffs/components/commit_item', () => { ...@@ -24,8 +24,7 @@ describe('diffs/components/commit_item', () => {
const getTitleElement = () => wrapper.find('.commit-row-message.item-title'); const getTitleElement = () => wrapper.find('.commit-row-message.item-title');
const getDescElement = () => wrapper.find('pre.commit-row-description'); const getDescElement = () => wrapper.find('pre.commit-row-description');
const getDescExpandElement = () => const getDescExpandElement = () => wrapper.find('.commit-content .js-toggle-button');
wrapper.find('.commit-content .text-expander.js-toggle-button');
const getShaElement = () => wrapper.find('.commit-sha-group'); const getShaElement = () => wrapper.find('.commit-sha-group');
const getAvatarElement = () => wrapper.find('.user-avatar-link'); const getAvatarElement = () => wrapper.find('.user-avatar-link');
const getCommitterElement = () => wrapper.find('.committer'); const getCommitterElement = () => wrapper.find('.committer');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment