Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
864
Issues
864
List
Boards
Labels
Service Desk
Milestones
Merge Requests
46
Merge Requests
46
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
9c9d23d9353afa21954cf7013b2aee0cf111f21e...79c1eb43a8a16b93481642ae5c52e2b34d1748ab
Source
79c1eb43a8a16b93481642ae5c52e2b34d1748ab
Select Git revision
...
Target
9c9d23d9353afa21954cf7013b2aee0cf111f21e
Select Git revision
Compare
Commits (2)
(chore): remove 10k boosts
· 2ff49568
Mark Harding
authored
16 minutes ago
2ff49568
Merge branch 'chore/remove-10k-boosts' into 'master'
· 79c1eb43
Brian Hatchet
authored
16 minutes ago
(chore): remove 10k boosts See merge request
!484
79c1eb43
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
creator.component.ts
src/app/modules/boost/creator/creator.component.ts
+2
-2
payment-methods.component.html
...st/creator/payment-methods/payment-methods.component.html
+2
-2
No files found.
src/app/modules/boost/creator/creator.component.ts
View file @
79c1eb43
...
...
@@ -468,9 +468,9 @@ export class BoostCreatorComponent implements AfterViewInit {
if
(
this
.
boost
.
currency
===
'
onchain
'
&&
(
this
.
boost
.
amount
<
this
.
rates
.
min
||
this
.
boost
.
amount
>
(
this
.
rates
.
cap
*
2
)
||
this
.
boost
.
amount
>
(
this
.
rates
.
cap
)
))
{
throw
new
VisibleBoostError
(
`You must boost between
${
this
.
rates
.
min
}
and
${
this
.
rates
.
cap
*
2
}
views.`
);
throw
new
VisibleBoostError
(
`You must boost between
${
this
.
rates
.
min
}
and
${
this
.
rates
.
cap
}
views.`
);
}
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/boost/creator/payment-methods/payment-methods.component.html
View file @
79c1eb43
...
...
@@ -37,7 +37,7 @@
</span>
<ul
class=
"m-boostCreatorSelector__bullets"
>
<
li>
Max 10k per boost
</li
>
<
!-- <li>Max 10k per boost</li> --
>
<li>
Stored on the blockchain
</li>
<li>
Stand out in the feeds
</li>
<li>
Gain "OnChain" badge
</li>
...
...
@@ -78,7 +78,7 @@
</span>
<ul
class=
"m-boostCreatorSelector__bullets"
>
<
li>
Max 5k per boost
</li
>
<
!-- <li>Max 5k per boost</li> --
>
<li>
Stored on Minds servers
</li>
<li>
No transaction fee
</li>
<li
style=
"list-style:none"
>
</li>
...
...
This diff is collapsed.
Click to expand it.