Skip to content

Commit

Permalink
Merge branch '1.3.0' into feat/MET-2019-block-producer
Browse files Browse the repository at this point in the history
  • Loading branch information
Sotatek-TaiTruong committed May 4, 2024
2 parents 3562052 + cceee50 commit a493399
Show file tree
Hide file tree
Showing 15 changed files with 1,652 additions and 339 deletions.
2 changes: 1 addition & 1 deletion src/commons/menus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const footerMenus: Menu[] = [
icon: BrowseIcon,
children: [
{ href: "https://cardanofoundation.org/en/about-us/", title: "Cardano Foundation", key: "site.CF" },
{ href: "https://docs.cardano.org/en/latest/", title: "Cardano Docs", key: "site.cardanoDocs" },
{ href: "https://docs.cardano.org/", title: "Cardano Docs", key: "site.cardanoDocs" },
{ href: "https://education.cardanofoundation.org/", title: "Cardano Academy", key: "site.cardanoAcademy" },
{ href: "https://developers.cardano.org/", title: "Developer Portal", key: "site.developerPortal" },
{ href: "https://cardanofoundation.org/en/news", title: "News and Blog", key: "site.newsAndBlog" }
Expand Down
6 changes: 6 additions & 0 deletions src/commons/resources/icons/DrepId.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/commons/resources/icons/activeStakeDrep.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/commons/resources/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,9 @@ import PoolSaturationIcon from "./icons/pool-saturation.svg?react";
import PoolBlocksIcon from "./icons/pool-block.svg?react";
import PoolParticipationIcon from "./icons/pool-participation.svg?react";
import PoolVotingIcon from "./icons/pool-voting.svg?react";
import DrepIdIcon from "./icons/DrepId.svg?react";
import ActiveStakeDrepIcon from "./icons/activeStakeDrep.svg?react";

// eslint-disable-next-line import/order
import TotalOutput from "./icons/totalOutput.svg?react";
export {
Expand Down Expand Up @@ -304,6 +307,8 @@ export {
UserIcon,
DropIcon,
DelegatorIcon,
DrepIdIcon,
ActiveStakeDrepIcon,
LightningIcon,
LinkOff,
SignOut,
Expand Down
1 change: 1 addition & 0 deletions src/commons/utils/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export const API = {
},
POOL_CERTIFICATES_HISTORY: "pools/certificates-history",
POOL_RANGE_VALUES: "pools/range-values-for-filter",
DREP_RANGE_VALUES: "dreps/range-values-for-filter",
DREP_CERTIFICATES_HISTORY: "dreps/:drepId/certificates-history",
DREP_OVERVIEW: "dreps/:drepId/drep-details",
DREP_OVERVIEW_CHART: "dreps/:drepId/vote-procedure-chart",
Expand Down
1 change: 1 addition & 0 deletions src/components/DelegationPool/DelegationList/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export const DelegationContainer = styled("div")(() => ({
zIndex: 10
}
}));

export const StyledInput = styled("input")`
border: none;
width: 100%;
Expand Down

0 comments on commit a493399

Please sign in to comment.