Commit 8b93d5e1 authored by mgandres's avatar mgandres

Fix pipeline status layout in pipeline editor

Changelog: fixed
parent b171057d
...@@ -104,12 +104,16 @@ export default { ...@@ -104,12 +104,16 @@ export default {
class="gl-display-flex gl-justify-content-space-between gl-align-items-center gl-white-space-nowrap gl-max-w-full" class="gl-display-flex gl-justify-content-space-between gl-align-items-center gl-white-space-nowrap gl-max-w-full"
> >
<template v-if="showLoadingState"> <template v-if="showLoadingState">
<gl-loading-icon class="gl-mr-auto gl-display-inline-block" size="sm" /> <div>
<span data-testid="pipeline-loading-msg">{{ $options.i18n.fetchLoading }}</span> <gl-loading-icon class="gl-mr-auto gl-display-inline-block" size="sm" />
<span data-testid="pipeline-loading-msg">{{ $options.i18n.fetchLoading }}</span>
</div>
</template> </template>
<template v-else-if="hasError"> <template v-else-if="hasError">
<gl-icon class="gl-mr-auto" name="warning-solid" /> <div>
<span data-testid="pipeline-error-msg">{{ $options.i18n.fetchError }}</span> <gl-icon class="gl-mr-auto" name="warning-solid" />
<span data-testid="pipeline-error-msg">{{ $options.i18n.fetchError }}</span>
</div>
</template> </template>
<template v-else> <template v-else>
<div> <div>
......
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