Skip to content
代码片段 群组 项目
提交 bfaa54f5 编辑于 作者: Dan Mizzi-Harris's avatar Dan Mizzi-Harris 提交者: Coung Ngo
浏览文件

Pajamas migrations

上级 fe4acd9c
No related branches found
No related tags found
无相关合并请求
...@@ -402,23 +402,23 @@ export default { ...@@ -402,23 +402,23 @@ export default {
<div <div
v-if="idState.forkMessageVisible" v-if="idState.forkMessageVisible"
class="js-file-fork-suggestion-section file-fork-suggestion" class="js-file-fork-suggestion-section file-fork-suggestion gl-border-1 gl-border-solid gl-border-gray-100 gl-border-top-0"
> >
<span v-safe-html="forkMessage" class="file-fork-suggestion-note"></span> <span v-safe-html="forkMessage" class="file-fork-suggestion-note"></span>
<gl-button <gl-button
:href="file.fork_path" :href="file.fork_path"
class="js-fork-suggestion-button" class="js-fork-suggestion-button gl-mr-3"
category="secondary" category="secondary"
variant="confirm" variant="confirm"
>{{ $options.i18n.fork }}</gl-button >{{ $options.i18n.fork }}</gl-button
> >
<button <gl-button
class="js-cancel-fork-suggestion-button btn btn-grouped" class="js-cancel-fork-suggestion-button"
type="button" category="secondary"
@click="hideForkMessage" @click="hideForkMessage"
> >
{{ $options.i18n.cancel }} {{ $options.i18n.cancel }}
</button> </gl-button>
</div> </div>
<template v-else> <template v-else>
<div <div
......
<script> <script>
import { GlSkeletonLoader } from '@gitlab/ui'; import { GlButton, GlSkeletonLoader } from '@gitlab/ui';
// eslint-disable-next-line no-restricted-imports // eslint-disable-next-line no-restricted-imports
import { mapState, mapActions } from 'vuex'; import { mapState, mapActions } from 'vuex';
import SafeHtml from '~/vue_shared/directives/safe_html'; import SafeHtml from '~/vue_shared/directives/safe_html';
...@@ -19,6 +19,7 @@ export default { ...@@ -19,6 +19,7 @@ export default {
GlSkeletonLoader, GlSkeletonLoader,
DiffViewer, DiffViewer,
ImageDiffOverlay, ImageDiffOverlay,
GlButton,
}, },
directives: { directives: {
SafeHtml, SafeHtml,
...@@ -127,12 +128,12 @@ export default { ...@@ -127,12 +128,12 @@ export default {
<td class="new_line diff-line-num"></td> <td class="new_line diff-line-num"></td>
<td v-if="error" class="js-error-lazy-load-diff diff-loading-error-block"> <td v-if="error" class="js-error-lazy-load-diff diff-loading-error-block">
{{ __('Unable to load the diff') }} {{ __('Unable to load the diff') }}
<button <gl-button
class="gl-button btn-link btn-link-retry gl-p-0 js-toggle-lazy-diff-retry-button gl-reset-font-size!" class="btn-link-retry gl-font-regular js-toggle-lazy-diff-retry-button"
@click="fetchDiff" @click="fetchDiff"
> >
{{ __('Try again') }} {{ __('Try again') }}
</button> </gl-button>
</td> </td>
<td v-else class="line_content js-success-lazy-load"> <td v-else class="line_content js-success-lazy-load">
<span></span> <span></span>
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册