Commit 8fd5d1ad authored by chenqikuai's avatar chenqikuai

fix:修复移动端货币选择器placeholder展示

parent 2920fcd2
...@@ -97,6 +97,7 @@ export const lang = { ...@@ -97,6 +97,7 @@ export const lang = {
count: "Txns", count: "Txns",
totalTip: "All", totalTip: "All",
tip: "show the last 100,000 entries", tip: "show the last 100,000 entries",
tip2: "show the last 10,000 entries",
hash: "Txn Hash", hash: "Txn Hash",
sender: "Sender", sender: "Sender",
receiver: "Receiver", receiver: "Receiver",
......
...@@ -97,6 +97,7 @@ export const lang = { ...@@ -97,6 +97,7 @@ export const lang = {
count: "条交易", count: "条交易",
totalTip: "全部", totalTip: "全部",
tip: "显示最近10万条", tip: "显示最近10万条",
tip2: "显示最近1万条",
hash: "交易哈希", hash: "交易哈希",
sender: "发送方", sender: "发送方",
receiver: "接收方", receiver: "接收方",
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
type="text" type="text"
v-model="filterValue" v-model="filterValue"
:placeholder="searchPlaceholder" :placeholder="searchPlaceholder"
class="outline-none mx-2 w-full" class="outline-none mx-2 w-full text-sm"
/> />
</div> </div>
<div <div
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
:optionPosition="'right'" :optionPosition="'right'"
:optionsList="optionsList" :optionsList="optionsList"
:selectedValue="selectedValue" :selectedValue="selectedValue"
:searchPlaceholder="$t('lang.searchCurrency')"
@change="handleSelectChange" @change="handleSelectChange"
></Select> ></Select>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment