Skip to content

Commit 33bb604

Browse files
committed
Merge remote-tracking branch 'origin/master' into prevent-tooltip-flicker
2 parents aafbd3f + 239d1f5 commit 33bb604

File tree

13 files changed

+1
-13
lines changed

13 files changed

+1
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2193,7 +2193,7 @@ Here's an example of what the notifications look like:
21932193
|:--------------------------------------|:-------------------------------------------------------------------------------------------|:---------------------------|
21942194
| `alerting.telegram` | Configuration for alerts of type `telegram` | `{}` |
21952195
| `alerting.telegram.token` | Telegram Bot Token | Required `""` |
2196-
| `alerting.telegram.id` | Telegram User ID | Required `""` |
2196+
| `alerting.telegram.id` | Telegram Chat ID | Required `""` |
21972197
| `alerting.telegram.topic-id` | Telegram Topic ID in a group corresponds to `message_thread_id` in the Telegram API | `""` |
21982198
| `alerting.telegram.api-url` | Telegram API URL | `https://api.telegram.org` |
21992199
| `alerting.telegram.client` | Client configuration. <br />See [Client configuration](#client-configuration). | `{}` |

web/app/src/App.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@
153153
</template>
154154

155155
<script setup>
156-
/* eslint-disable no-undef */
157156
import { ref, computed, onMounted, onUnmounted } from 'vue'
158157
import { useRoute } from 'vue-router'
159158
import { Menu, X, LogIn } from 'lucide-vue-next'

web/app/src/components/EndpointCard.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
</template>
6262

6363
<script setup>
64-
/* eslint-disable no-undef */
6564
import { computed, watch, ref, onMounted, onUnmounted } from 'vue'
6665
import { useRouter } from 'vue-router'
6766
import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/card'

web/app/src/components/Pagination.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
</template>
3030

3131
<script setup>
32-
/* eslint-disable no-undef */
3332
import { ref, computed } from 'vue'
3433
import { ChevronLeft, ChevronRight } from 'lucide-vue-next'
3534
import { Button } from '@/components/ui/button'

web/app/src/components/Settings.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454

5555

5656
<script setup>
57-
/* eslint-disable no-undef */
5857
import { ref, onMounted, onUnmounted } from 'vue'
5958
import { Sun, Moon, RefreshCw } from 'lucide-vue-next'
6059

web/app/src/components/Tooltip.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@
9595
</template>
9696

9797
<script setup>
98-
/* eslint-disable no-undef */
9998
import { ref, watch, nextTick, computed, onMounted, onUnmounted } from 'vue'
10099
import { useRoute } from 'vue-router'
101100
import { prettifyTimestamp } from '@/utils/time'

web/app/src/components/ui/badge/Badge.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
</template>
66

77
<script setup>
8-
/* eslint-disable no-undef */
98
import { cva } from 'class-variance-authority'
109
import { combineClasses } from '@/utils/misc'
1110

web/app/src/components/ui/button/Button.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
</template>
99

1010
<script setup>
11-
/* eslint-disable no-undef */
1211
import { cva } from 'class-variance-authority'
1312
import { combineClasses } from '@/utils/misc'
1413

web/app/src/components/ui/input/Input.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
</template>
1111

1212
<script setup>
13-
/* eslint-disable no-undef */
1413
import { combineClasses } from '@/utils/misc'
1514
1615
defineProps({

web/app/src/components/ui/select/Select.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
</template>
4141

4242
<script setup>
43-
/* eslint-disable no-undef */
4443
import { ref, computed, onMounted, onUnmounted } from 'vue'
4544
import { ChevronDown, Check } from 'lucide-vue-next'
4645

0 commit comments

Comments
 (0)