debian-mirror-gitlab/app/assets/javascripts/diffs/components/hidden_files_warning.vue

40 lines
844 B
Vue
Raw Normal View History

2018-11-08 19:23:39 +05:30
<script>
2020-04-22 19:07:51 +05:30
/* eslint-disable @gitlab/vue-require-i18n-strings */
2018-11-08 19:23:39 +05:30
export default {
props: {
total: {
type: String,
required: true,
},
visible: {
type: Number,
required: true,
},
plainDiffPath: {
type: String,
required: true,
},
emailPatchPath: {
type: String,
required: true,
},
},
};
</script>
<template>
<div class="alert alert-warning">
<h4>
{{ __('Too many changes to show.') }}
2020-10-24 23:57:45 +05:30
<div class="float-right">
2019-02-15 15:39:39 +05:30
<a :href="plainDiffPath" class="btn btn-sm"> {{ __('Plain diff') }} </a>
<a :href="emailPatchPath" class="btn btn-sm"> {{ __('Email patch') }} </a>
2018-11-08 19:23:39 +05:30
</div>
</h4>
<p>
2019-02-15 15:39:39 +05:30
To preserve performance only <strong> {{ visible }} of {{ total }} </strong> files are
displayed.
2018-11-08 19:23:39 +05:30
</p>
</div>
</template>