chore: Update webhook delete button styles(#2322)

* Chore: Fixes style issue of webhook button

* Review fixes
This commit is contained in:
Nithin David Thomas 2021-05-21 19:49:57 +05:30 committed by GitHub
parent 26ba8e6ff7
commit ac2c5c93b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,14 +43,14 @@
</td>
<td class="button-wrapper">
<div @click="openDeletePopup(webHookItem, index)">
<woot-submit-button
:button-text="
$t('INTEGRATION_SETTINGS.WEBHOOK.DELETE.BUTTON_TEXT')
"
:loading="loading[webHookItem.id]"
icon-class="ion-close-circled"
button-class="link hollow grey-btn"
/>
<woot-button
:is-loading="loading[webHookItem.id]"
icon="ion-close-circled"
variant="link"
color-scheme="secondary"
>
{{ $t('INTEGRATION_SETTINGS.WEBHOOK.DELETE.BUTTON_TEXT') }}
</woot-button>
</div>
</td>
</tr>