fix: logs filter dropdown text overlapping with caret
- Change select padding from px-3 to pl-3 pr-8 to reserve space for the native dropdown arrow - Update version to 1.0.0-beta.2-q9x3m7
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group 'top.nxxy335.commentaiautopilot'
|
group 'top.nxxy335.commentaiautopilot'
|
||||||
version '1.0.0-beta.2-kx7m2p'
|
version '1.0.0-beta.2-q9x3m7'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|||||||
@@ -30,4 +30,4 @@ spec:
|
|||||||
url: "https://github.com/sunny-335/plugin-comment-ai-autopilot/blob/main/LICENSE"
|
url: "https://github.com/sunny-335/plugin-comment-ai-autopilot/blob/main/LICENSE"
|
||||||
settingName: "comment-ai-autopilot-settings"
|
settingName: "comment-ai-autopilot-settings"
|
||||||
configMapName: "comment-ai-autopilot-configmap"
|
configMapName: "comment-ai-autopilot-configmap"
|
||||||
version: "1.0.0-beta.2-kx7m2p"
|
version: "1.0.0-beta.2-q9x3m7"
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
<div class="mx-4 mt-2 flex items-center gap-3">
|
<div class="mx-4 mt-2 flex items-center gap-3">
|
||||||
<select
|
<select
|
||||||
v-model="filterStatus"
|
v-model="filterStatus"
|
||||||
class="rounded-md border border-gray-300 px-3 py-1.5 text-sm focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
|
class="rounded-md border border-gray-300 pl-3 pr-8 py-1.5 text-sm focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
|
||||||
>
|
>
|
||||||
<option value="">全部状态</option>
|
<option value="">全部状态</option>
|
||||||
<option value="PASS">通过</option>
|
<option value="PASS">通过</option>
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
</select>
|
</select>
|
||||||
<select
|
<select
|
||||||
v-model="filterSentiment"
|
v-model="filterSentiment"
|
||||||
class="rounded-md border border-gray-300 px-3 py-1.5 text-sm focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
|
class="rounded-md border border-gray-300 pl-3 pr-8 py-1.5 text-sm focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
|
||||||
>
|
>
|
||||||
<option value="">全部情感</option>
|
<option value="">全部情感</option>
|
||||||
<option value="POSITIVE">正面</option>
|
<option value="POSITIVE">正面</option>
|
||||||
|
|||||||
Reference in New Issue
Block a user