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

Fixes broken variables layout with triggered pipeline

See merge request gitlab-org/gitlab!74213
This commit is contained in:
Frédéric Caplette 2021-11-10 18:14:50 +00:00
commit 8d65709392

View file

@ -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>