Fix: link address overflow in webhook. (#1775)
This commit is contained in:
@@ -36,7 +36,9 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(webHookItem, index) in records" :key="webHookItem.id">
|
<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">
|
<td class="button-wrapper">
|
||||||
<div @click="openDeletePopup(webHookItem, index)">
|
<div @click="openDeletePopup(webHookItem, index)">
|
||||||
<woot-submit-button
|
<woot-submit-button
|
||||||
@@ -144,3 +146,8 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.webhook-link {
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user