-
Notifications
You must be signed in to change notification settings - Fork 490
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Advanced filter #1905
Merged
Merged
Advanced filter #1905
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
isstuev
force-pushed
the
advanced-filter
branch
2 times, most recently
from
May 10, 2024 15:06
ecf11ae
to
94d075d
Compare
isstuev
force-pushed
the
advanced-filter
branch
2 times, most recently
from
June 18, 2024 09:13
7dc52c6
to
4f507a1
Compare
isstuev
force-pushed
the
advanced-filter
branch
6 times, most recently
from
August 21, 2024 12:43
4da37b2
to
0f5a5f6
Compare
isstuev
force-pushed
the
advanced-filter
branch
2 times, most recently
from
August 21, 2024 13:17
10c5b47
to
4fa6b1a
Compare
isstuev
force-pushed
the
advanced-filter
branch
from
August 21, 2024 13:51
4fa6b1a
to
108a793
Compare
isstuev
force-pushed
the
advanced-filter
branch
2 times, most recently
from
August 21, 2024 15:06
efc9c7f
to
3c8cf33
Compare
isstuev
force-pushed
the
advanced-filter
branch
from
August 21, 2024 15:51
3c8cf33
to
4df4659
Compare
isstuev
force-pushed
the
advanced-filter
branch
from
August 21, 2024 16:04
4df4659
to
bfb0c8e
Compare
isstuev
force-pushed
the
advanced-filter
branch
from
August 29, 2024 08:48
bfb0c8e
to
a184eba
Compare
isstuev
force-pushed
the
advanced-filter
branch
from
December 6, 2024 17:49
6faa903
to
4f890ef
Compare
tom2drum
requested changes
Dec 10, 2024
This was referenced Dec 11, 2024
isstuev
force-pushed
the
advanced-filter
branch
from
December 11, 2024 18:24
4f890ef
to
d91ff15
Compare
tom2drum
approved these changes
Dec 13, 2024
Comment on lines
+49
to
+59
{ TABLE_COLUMNS.map(col => ( | ||
<Checkbox | ||
key={ col.id } | ||
defaultChecked={ columns[col.id] } | ||
onChange={ onCheckboxClick } | ||
id={ col.id } | ||
size="lg" | ||
> | ||
{ col.id === 'or_and' ? 'And/Or' : col.name } | ||
</Checkbox> | ||
)) } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think using the CheckboxGroup
component would simplify the code.
w875050772
added a commit
to boolnetwork/boolscan
that referenced
this pull request
Dec 23, 2024
…br-customized-retrofits-ultra * 'ultra' of https://github.com/boolnetwork/boolscan: (1135 commits) Games (blockscout#2338) pools pages (blockscout#2468) Advanced filter (blockscout#1905) Call the API logout endpoint when the user logs out (blockscout#2469) Update Merits dashboard (blockscout#2456) Migrate from `web3modal` to `reown` (blockscout#2321) Support CDN for NFT images (blockscout#2461) change default description (blockscout#2470) Replace system selectors with Blockscout selectors style (blockscout#2451) [skip ci] fix favicon generator dev script fix(deploy-script): favicon generator (blockscout#2466) Support verification of Stylus contracts (blockscout#2450) fix block miner highlight style (blockscout#2459) SEO Tweaks for Gas Tracker Page (blockscout#2344) ReCaptcha: migrate back to v2 solution (blockscout#2446) Zilliqa: filter for Scilla contracts (blockscout#2449) Add Nouns pfps (blockscout#2447) Remove Canny from footer section (blockscout#2442) Scroll views (blockscout#2418) Improve grammar, capitalization, and consistency (blockscout#2432) ... # Conflicts: # .eslintrc.js # .gitignore # configs/app/chain.ts # configs/app/ui.ts # configs/app/utils.ts # configs/envs/.env.main # deploy/tools/envs-validator/schema.ts # docs/ENVS.md # icons/clock-light.svg # icons/empty_search_result.svg # icons/wallet.svg # lib/api/buildUrl.ts # lib/api/resources.ts # lib/api/useApiQuery.tsx # lib/hooks/useFetch.tsx # lib/hooks/useNavItems.tsx # lib/metadata/getPageOgType.ts # lib/metadata/templates/description.ts # lib/metadata/templates/title.ts # lib/mixpanel/getPageType.ts # nextjs/nextjs-routes.d.ts # package.json # public/favicon/apple-touch-icon.png # public/favicon/favicon-16x16.png # public/favicon/favicon-32x32.png # public/favicon/favicon.ico # public/favicon_back/apple-touch-icon-120x120.png # public/favicon_back/apple-touch-icon-152x152.png # public/favicon_back/apple-touch-icon-180x180.png # public/favicon_back/apple-touch-icon-60x60.png # public/favicon_back/apple-touch-icon-76x76.png # public/favicon_back/safari-pinned-tab.svg # public/icons/name.d.ts # stubs/utils.ts # theme/foundations/colors.ts # types/api/transaction.ts # ui/address/contract/ContractConnectWallet.tsx # ui/home/Stats.tsx # ui/home/StatsItem.tsx # ui/home/indicators/ChainIndicators.tsx # ui/home/indicators/utils/indicators.tsx # ui/pages/Home.tsx # ui/shared/DetailsInfoItem.tsx # ui/shared/GasInfoTooltipContent/GasInfoRow.tsx # ui/shared/pagination/useQueryWithPages.ts # ui/snippets/footer/Footer.tsx # ui/snippets/navigation/vertical/NavigationDesktop.tsx # ui/snippets/searchBar/SearchBarInput.tsx # ui/snippets/topBar/ColorModeSwitch.tsx # ui/snippets/topBar/ColorModeSwitchTheme.tsx # ui/snippets/topBar/TopBarStats.tsx # ui/snippets/walletMenu/WalletMenuDesktop.tsx # ui/stats/NumberWidget.tsx # ui/stats/NumberWidgetsList.tsx # ui/stats/StatsDropdownMenu.tsx # ui/tx/TxInternals.tsx # ui/tx/internals/TxInternalsList.tsx # ui/tx/internals/TxInternalsTable.tsx # ui/txs/TxType.tsx # ui/txs/TxsTableItem.tsx # yarn.lock
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description and Related Issue(s)
resolves #1794
Checklist for PR author