|
|
@ -73,7 +73,7 @@ function onPressEnter() { |
|
|
|
<a-input |
|
|
|
<a-input |
|
|
|
v-model:value="search.query" |
|
|
|
v-model:value="search.query" |
|
|
|
size="small" |
|
|
|
size="small" |
|
|
|
class="max-w-[200px]" |
|
|
|
class="max-w-[200px] !text-xs" |
|
|
|
:placeholder="$t('placeholder.filterQuery')" |
|
|
|
:placeholder="$t('placeholder.filterQuery')" |
|
|
|
:bordered="false" |
|
|
|
:bordered="false" |
|
|
|
data-testid="search-data-input" |
|
|
|
data-testid="search-data-input" |
|
|
@ -83,3 +83,8 @@ function onPressEnter() { |
|
|
|
</a-input> |
|
|
|
</a-input> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
<style scoped> |
|
|
|
|
|
|
|
:deep(input::placeholder){ |
|
|
|
|
|
|
|
@apply !text-xs |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
</style> |
|
|
|