Fix: link address overflow in webhook. (#1775)

This commit is contained in:
Sivin Varghese
2021-02-16 00:10:01 +05:30
committed by GitHub
parent ee3ccbf0c8
commit 5f2bf7dfd2

View File

@@ -36,7 +36,9 @@
</thead>
<tbody>
<tr v-for="(webHookItem, index) in records" :key="webHookItem.id">
<td>{{ webHookItem.url }}</td>
<td class="webhook-link">
{{ webHookItem.url }}
</td>
<td class="button-wrapper">
<div @click="openDeletePopup(webHookItem, index)">
<woot-submit-button
@@ -144,3 +146,8 @@ export default {
},
};
</script>
<style scoped lang="scss">
.webhook-link {
word-break: break-word;
}
</style>