Commit 8d657093 authored by Frédéric Caplette's avatar Frédéric Caplette

Merge branch '325927-fix-broken-trigger-block-layout' into 'master'

Fixes broken variables layout with triggered pipeline

See merge request gitlab-org/gitlab!74213
parents ad662eec 3941d96a
......@@ -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