Skip to content

Commit

Permalink
Merge pull request #3082 from dusk-network/feature-3081
Browse files Browse the repository at this point in the history
  • Loading branch information
nortonandreev authored Nov 28, 2024
2 parents beff4e6 + 9b9362b commit 0d52ff0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions web-wallet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Update Transactions list design [#1922]
- Reword "Withdraw Rewards" operation to "Claim Rewards" [#3076]
- Reword "Shield/Unshield" operation to "Allocate" [#3081]

### Removed

Expand Down Expand Up @@ -402,6 +403,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#3071]: https://github.com/dusk-network/rusk/issues/3071
[#3073]: https://github.com/dusk-network/rusk/issues/3073
[#3076]: https://github.com/dusk-network/rusk/issues/3076
[#3081]: https://github.com/dusk-network/rusk/issues/3081

<!-- VERSIONS -->

Expand Down
2 changes: 1 addition & 1 deletion web-wallet/src/lib/contracts/contract-descriptors.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default [
{
enabled: import.meta.env.VITE_FEATURE_ALLOCATE === "true",
id: "allocate",
label: "Shield / Unshield",
label: "Allocate",
operations: [
{
disabled: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ exports[`Dashboard > should render a card when there is an error getting transac
<span
class="dashboard-nav__item-label svelte-1opr8zc"
>
Shield / Unshield
Allocate
</span>
<span
Expand Down Expand Up @@ -343,7 +343,7 @@ exports[`Dashboard > should render the dashboard page with the transactions afte
<span
class="dashboard-nav__item-label svelte-1opr8zc"
>
Shield / Unshield
Allocate
</span>
<span
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</script>

{#if import.meta.env.VITE_FEATURE_ALLOCATE || false}
<IconHeadingCard heading="Shield / Unshield" icons={[mdiSync]}>
<IconHeadingCard heading="Allocate" icons={[mdiSync]}>
<AllocateContract
on:operationChange={({ detail }) => updateOperation(detail)}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ exports[`Allocate > should render the allocation page 1`] = `
<h3
class="h4"
>
Shield / Unshield
Allocate
</h3>
<div
Expand Down

0 comments on commit 0d52ff0

Please sign in to comment.