Skip to content

Commit f95f18e

Browse files
committed
--wip-- [skip ci]
1 parent 64dc495 commit f95f18e

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

frontend/layers/products/app/components/BlockchainSearchInput.vue

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,23 @@ const handleClickExample = (type: 'address' | 'token' | 'transaction' | 'validat
121121
<template #search-examples>
122122
<div class="flex items-center">
123123
<section class="flex gap-lg">
124-
<div class="py-xs px-md border-gray-400 font-semibold text-gray-400">
124+
<BaseChip
125+
:is-selected="false"
126+
icon="cube"
127+
:aria-label="$t('products.landing_page.search.examples.transaction')"
128+
@click="emit('click:example', 'transaction')"
129+
>
130+
{{ $t('products.landing_page.search.examples.latest_block') }}
131+
</BaseChip>
132+
<BaseChip
133+
:is-selected="false"
134+
icon="chart-line"
135+
:aria-label="$t('products.landing_page.search.examples.transaction')"
136+
@click="emit('click:example', 'transaction')"
137+
>
138+
{{ $t('products.landing_page.search.examples.latest_epoch') }}
139+
</BaseChip>
140+
<div class="py-xs px-md border-l border-gray-400 font-semibold text-gray-400">
125141
{{ $t('products.landing_page.search.examples.title') }}
126142
</div>
127143
<BaseChip

0 commit comments

Comments
 (0)