Welcome to mirror list, hosted at ThFree Co, Russian Federation.

submit_changes_error.vue « components « static_site_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5b6c685124515bf0fca2ab0a47e0bd48d1398e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script>
import { GlAlert, GlButton } from '@gitlab/ui';

export default {
  components: {
    GlAlert,
    GlButton,
  },
  props: {
    error: {
      type: String,
      required: true,
    },
  },
};
</script>
<template>
  <gl-alert variant="danger" dismissible @dismiss="$emit('dismiss')">
    {{ s__('StaticSiteEditor|An error occurred while submitting your changes.') }} {{ error }}
    <template #actions>
      <gl-button variant="danger" @click="$emit('retry')">{{ __('Retry') }}</gl-button>
    </template>
  </gl-alert>
</template>