Skip to content

Commit b48989c

Browse files
[autofix.ci] apply automated fixes
1 parent bc558b1 commit b48989c

File tree

6 files changed

+33
-33
lines changed

6 files changed

+33
-33
lines changed

frontend/src/components/ui/tabs/Tabs.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<script setup lang="ts">
2-
import type { TabsRootEmits, TabsRootProps } from "reka-ui"
3-
import type { HTMLAttributes } from "vue"
4-
import { reactiveOmit } from "@vueuse/core"
5-
import { TabsRoot, useForwardPropsEmits } from "reka-ui"
6-
import { cn } from "@/lib/utils"
2+
import type { TabsRootEmits, TabsRootProps } from 'reka-ui'
3+
import type { HTMLAttributes } from 'vue'
4+
import { reactiveOmit } from '@vueuse/core'
5+
import { TabsRoot, useForwardPropsEmits } from 'reka-ui'
6+
import { cn } from '@/lib/utils'
77
8-
const props = defineProps<TabsRootProps & { class?: HTMLAttributes["class"] }>()
8+
const props = defineProps<TabsRootProps & { class?: HTMLAttributes['class'] }>()
99
const emits = defineEmits<TabsRootEmits>()
1010
11-
const delegatedProps = reactiveOmit(props, "class")
11+
const delegatedProps = reactiveOmit(props, 'class')
1212
const forwarded = useForwardPropsEmits(delegatedProps, emits)
1313
</script>
1414

frontend/src/components/ui/tabs/TabsContent.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<script setup lang="ts">
2-
import type { TabsContentProps } from "reka-ui"
3-
import type { HTMLAttributes } from "vue"
4-
import { reactiveOmit } from "@vueuse/core"
5-
import { TabsContent } from "reka-ui"
6-
import { cn } from "@/lib/utils"
2+
import type { TabsContentProps } from 'reka-ui'
3+
import type { HTMLAttributes } from 'vue'
4+
import { reactiveOmit } from '@vueuse/core'
5+
import { TabsContent } from 'reka-ui'
6+
import { cn } from '@/lib/utils'
77
8-
const props = defineProps<TabsContentProps & { class?: HTMLAttributes["class"] }>()
8+
const props = defineProps<TabsContentProps & { class?: HTMLAttributes['class'] }>()
99
10-
const delegatedProps = reactiveOmit(props, "class")
10+
const delegatedProps = reactiveOmit(props, 'class')
1111
</script>
1212

1313
<template>

frontend/src/components/ui/tabs/TabsList.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<script setup lang="ts">
2-
import type { TabsListProps } from "reka-ui"
3-
import type { HTMLAttributes } from "vue"
4-
import { reactiveOmit } from "@vueuse/core"
5-
import { TabsList } from "reka-ui"
6-
import { cn } from "@/lib/utils"
2+
import type { TabsListProps } from 'reka-ui'
3+
import type { HTMLAttributes } from 'vue'
4+
import { reactiveOmit } from '@vueuse/core'
5+
import { TabsList } from 'reka-ui'
6+
import { cn } from '@/lib/utils'
77
8-
const props = defineProps<TabsListProps & { class?: HTMLAttributes["class"] }>()
8+
const props = defineProps<TabsListProps & { class?: HTMLAttributes['class'] }>()
99
10-
const delegatedProps = reactiveOmit(props, "class")
10+
const delegatedProps = reactiveOmit(props, 'class')
1111
</script>
1212

1313
<template>

frontend/src/components/ui/tabs/TabsTrigger.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<script setup lang="ts">
2-
import type { TabsTriggerProps } from "reka-ui"
3-
import type { HTMLAttributes } from "vue"
4-
import { reactiveOmit } from "@vueuse/core"
5-
import { TabsTrigger, useForwardProps } from "reka-ui"
6-
import { cn } from "@/lib/utils"
2+
import type { TabsTriggerProps } from 'reka-ui'
3+
import type { HTMLAttributes } from 'vue'
4+
import { reactiveOmit } from '@vueuse/core'
5+
import { TabsTrigger, useForwardProps } from 'reka-ui'
6+
import { cn } from '@/lib/utils'
77
8-
const props = defineProps<TabsTriggerProps & { class?: HTMLAttributes["class"] }>()
8+
const props = defineProps<TabsTriggerProps & { class?: HTMLAttributes['class'] }>()
99
10-
const delegatedProps = reactiveOmit(props, "class")
10+
const delegatedProps = reactiveOmit(props, 'class')
1111
1212
const forwardedProps = useForwardProps(delegatedProps)
1313
</script>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { default as Tabs } from "./Tabs.vue"
2-
export { default as TabsContent } from "./TabsContent.vue"
3-
export { default as TabsList } from "./TabsList.vue"
4-
export { default as TabsTrigger } from "./TabsTrigger.vue"
1+
export { default as Tabs } from './Tabs.vue'
2+
export { default as TabsContent } from './TabsContent.vue'
3+
export { default as TabsList } from './TabsList.vue'
4+
export { default as TabsTrigger } from './TabsTrigger.vue'

frontend/src/views/ActionHandler.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ watch(open, (open) => {
5959
<strong class="mr-4">{{ t('actionHandler.appDescription') }}</strong>
6060
<span class="text-lg">{{ params.get('appDescription') }}</span>
6161
</div>
62-
<ProviderSelector v-model="selectedProvider" class="pt-1"/>
62+
<ProviderSelector v-model="selectedProvider" class="pt-1" />
6363
</div>
6464

6565
<div v-if="providersStore.providers.length > 0" class="flex justify-end mt-6 gap-2">

0 commit comments

Comments
 (0)