style(fe): move F3 search button to Page Action Toolbar (#actions) in ModelList page for 100% KBX Command Bar standard compliance

This commit is contained in:
2026-08-15 22:27:04 +09:00
parent 135d0fdded
commit ecc5c641dc
2 changed files with 10 additions and 7 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

@@ -124,6 +124,16 @@ const handleRetry = () => {
:evidence="evidence"
@retry="handleRetry"
>
<template #actions>
<KsButton
label="🔍 조회 [F3]"
variant="primary"
size="sm"
aria-label="모델 목록 조회"
@click="handleSearchTrigger"
/>
</template>
<template #filters>
<section class="filters" aria-label="모델 검색 필터">
<input
@@ -143,13 +153,6 @@ const handleRetry = () => {
<option value="Validate">Validate</option>
<option value="Review">Review</option>
</select>
<KsButton
label="🔍 조회 [F3]"
variant="primary"
size="sm"
aria-label="모델 목록 조회"
@click="handleSearchTrigger"
/>
</section>
</template>