Skip to content

Commit

Permalink
1,416th Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Shyam-Chen committed Apr 2, 2024
1 parent 41a1932 commit 311f4c1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script setup lang="ts">
<script lang="ts" setup>
import { ref } from 'vue';
import { useInfiniteScroll } from '@vueuse/core';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script setup lang="ts">
<script lang="ts" setup>
import { ref } from 'vue';
import { useVirtualList } from '@vueuse/core';
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/checkbox-group/CheckboxGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function onChange(val: unknown) {

<template>
<FormControl v-slot="{ uid }" :label="label" :required="required" :invalid="invalid" :help="help">
<div class="flex items-center gap-4">
<div class="flex flex-wrap items-center gap-4">
<Checkbox
v-for="(item, index) in options"
v-bind="$attrs"
Expand Down
2 changes: 2 additions & 0 deletions ui/src/components/code-block/CodeBlock.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ const isDark = useDark();
const highlighter = useHighlighter();
onBeforeMount(async () => {
if (highlighter.state.core) return;
highlighter.state.core = await getHighlighterCore({
themes: [import('shiki/themes/github-dark.mjs'), import('shiki/themes/github-light.mjs')],
langs: [
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/radio-group/RadioGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const emit = defineEmits<{

<template>
<FormControl v-slot="{ uid }" :label="label" :required="required" :invalid="invalid" :help="help">
<div class="flex items-center gap-4">
<div class="flex flex-wrap items-center gap-4">
<label
v-for="(item, index) in options"
:key="index"
Expand Down

0 comments on commit 311f4c1

Please sign in to comment.