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

success_message.vue « commit_sidebar « components « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 137f8bb18c70059b7ea68cf5f712a0a4ce66189f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
import { mapState } from 'vuex';

export default {
  computed: {
    ...mapState(['lastCommitMsg', 'committedStateSvgPath']),
  },
};
</script>

<template>
  <div class="multi-file-commit-panel-success-message" aria-live="assertive">
    <div class="svg-content svg-80">
      <img :src="committedStateSvgPath" :alt="s__('IDE|Successful commit')" />
    </div>
    <div class="append-right-default prepend-left-default">
      <div class="text-content text-center">
        <h4>{{ __('All changes are committed') }}</h4>
        <p v-html="lastCommitMsg"></p>
      </div>
    </div>
  </div>
</template>