Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nelyaklyusa committed May 15, 2024
1 parent a9e3a35 commit fd46808
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/BaseDropdown/BaseDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ onClickOutside(target, () => {

<template>
<div
ref="target"
class="BaseDropdown base-dropdown"
>
<div
ref="target"
class="base-dropdown__selected"
:class="{ 'is-active': isActive }"
@click="isActive = !isActive"
Expand Down
2 changes: 1 addition & 1 deletion src/components/BaseTable/BaseTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { computed } from 'vue';
const props = withDefaults(defineProps<{
fixedHeader?: boolean;
height?: string,
size: 'large' | 'small'
size?: 'large' | 'small'
}>(), {
height: '100%',
size: 'large',
Expand Down

0 comments on commit fd46808

Please sign in to comment.