Skip to content

Commit

Permalink
Merge pull request #8267 from roiLeo/fix/ui/build
Browse files Browse the repository at this point in the history
🔧 libs/ui build error
  • Loading branch information
roiLeo authored Nov 27, 2023
2 parents 998f9b6 + d31503f commit 2b34f40
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* @kodadot/code-review-guild
* @kodadot/code-review-guild
/libs/ui @kodadot/internal-dev
2 changes: 2 additions & 0 deletions libs/ui/src/components/MediaItem/type/ImageMedia.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@

<script lang="ts" setup>
import consola from 'consola'
import { defineProps, withDefaults } from 'vue'
import TheImage from '../../TheImage/TheImage.vue'
import type { ImageComponent } from '../../TheImage/TheImage.vue'
Expand Down
1 change: 1 addition & 0 deletions libs/ui/src/components/NeoAvatar/NeoAvatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
</template>

<script setup lang="ts">
import { computed, defineProps } from 'vue'
import type { ImageComponent } from '../TheImage/TheImage.vue'
import ImageMedia from '../MediaItem/type/ImageMedia.vue'
Expand Down
1 change: 1 addition & 0 deletions libs/ui/src/components/TheImage/TheImage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import type {
MethodOptions,
ReservedProps,
} from 'vue'
import { computed, defineProps, withDefaults } from 'vue'
export type ImageComponent =
| 'img'
Expand Down

0 comments on commit 2b34f40

Please sign in to comment.