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

sidebar_todo.vue « sidebar « components « alert_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87090165f82aff31d9af21503c6eb827aa94681e (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
<script>
import Todo from '~/sidebar/components/todo_toggle/todo.vue';

export default {
  components: {
    Todo,
  },
  props: {
    sidebarCollapsed: {
      type: Boolean,
      required: true,
    },
  },
};
</script>

<!-- TODO: Implement after or as part of: https://gitlab.com/gitlab-org/gitlab/-/issues/215946 -->
<template>
  <div v-if="false" :class="{ 'block todo': sidebarCollapsed }">
    <todo
      :collapsed="sidebarCollapsed"
      :issuable-id="1"
      :is-todo="false"
      :is-action-active="false"
      issuable-type="alert"
      @toggleTodo="() => {}"
    />
  </div>
</template>