Commit 694619be authored by Jose Ivan Vargas's avatar Jose Ivan Vargas

Merge branch 'pipeline-editor/fix-status-layout' into 'master'

Fix pipeline status layout in pipeline editor

See merge request gitlab-org/gitlab!67709
parents 1af970ce 8b93d5e1
...@@ -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