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

publish_toolbar.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: 7f00fb71b0427c4645b4614c93b70fe15de339f9 (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
25
26
27
28
29
30
31
32
33
34
<script>
import { GlNewButton, GlLoadingIcon } from '@gitlab/ui';

export default {
  components: {
    GlNewButton,
    GlLoadingIcon,
  },
  props: {
    saveable: {
      type: Boolean,
      required: false,
      default: false,
    },
    savingChanges: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
};
</script>
<template>
  <div class="d-flex bg-light border-top justify-content-between align-items-center py-3 px-4">
    <gl-loading-icon :class="{ invisible: !savingChanges }" size="md" />
    <gl-new-button
      variant="success"
      :disabled="!saveable || savingChanges"
      @click="$emit('submit')"
    >
      {{ __('Submit Changes') }}
    </gl-new-button>
  </div>
</template>