aboutsummaryrefslogtreecommitdiff
path: root/src/components/settings_modal/helpers/group_setting.vue
blob: a4df4bf358ac0f8196cbc83dd801ba6fc346b65e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <span
    v-if="matchesExpertLevel"
    class="GroupSetting"
  >
    <ModifiedIndicator
      :changed="isChanged"
      :onclick="reset"
    />
    <ProfileSettingIndicator :is-profile="isProfileSetting" />
    <DraftButtons />
  </span>
</template>

<script src="./group_setting.js"></script>