Commit 3941d96a authored by Payton Burdette's avatar Payton Burdette

Fixes broken trigger layout

Fixes broken layout for variables
when using trigger pipeline.

Changelog: fixed
parent 562f7c58
......@@ -84,9 +84,13 @@ export default {
>
</p>
<gl-table :items="trigger.variables" :fields="$options.fields" small bordered>
<gl-table :items="trigger.variables" :fields="$options.fields" small bordered fixed>
<template #cell(key)="{ item }">
<span class="gl-overflow-break-word">{{ item.key }}</span>
</template>
<template #cell(value)="data">
{{ getDisplayValue(data.value) }}
<span class="gl-overflow-break-word">{{ getDisplayValue(data.value) }}</span>
</template>
</gl-table>
</template>
......
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