Skip to content

Commit

Permalink
resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Mar 7, 2022
2 parents 37a0636 + 9750be8 commit 7c7d0f8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/assets/v2/js/cart-ethereum-polygon.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ Vue.component('grantsCartEthereumPolygon', {
return;
}

// Some grants are multisig, so we display modal to prompt the split of the cart
if (this.multisigGrants.length < this.grantsByTenant.length) {
// If some grants are multisig, we display modal to prompt the split of the cart
if (this.multisigGrants.length > 0 && this.multisigGrants.length < this.grantsByTenant.length) {
this.polygon.showModal = true;
return;
}
Expand Down
2 changes: 1 addition & 1 deletion app/grants/templates/grants/cart/eth_polygon.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% load static i18n %}
<b-tab title-link-class="nav-line" id="ETH_POLYGON" v-if="grantsCountByTenant.ETH_POLYGON !== undefined">
<template v-slot:title><img class="mr-2" src="{% static 'v2/images/chains/ethereum.svg' %}" alt="" height="16">
<b>Ethereum / Polygon ([[grantsCountByTenant.ETH || 0]])</b>
<b>Ethereum / Polygon ([[grantsCountByTenant.ETH_POLYGON || 0]])</b>
</template>
<div class="row">
<!-- Left Section -->
Expand Down
2 changes: 1 addition & 1 deletion app/grants/templates/grants/cart/polygon_modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</template>

<!-- Main content -->
<template v-if="multisigGrants.length < grantsByTenant.length" v-slot:default="{ hide }">
<template v-if="multisigGrants.length > 0 && multisigGrants.length < grantsByTenant.length" v-slot:default="{ hide }">
<div class="px-4 text-left">
<h3 class="mb-3 text-black">Only some of these Grants can receive funds on Polygon</h3>
<p class="text-grey-400 font-body">
Expand Down
10 changes: 10 additions & 0 deletions app/retail/templates/mission.html
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,16 @@ <h4>Transcending the Individualist & Collectivist Divide - Kevin Owocki @ DAO Re
<br>
<br>

<h4>Quadratic Funding for Colorado - ETHDenver 2022 </h4>
<iframe width="650" height="350" src="https://www.youtube.com/embed/9KzzXOa78OU?list=PLvTrX8LNPbPkED8-JxUsFMzoicKRmsrfn" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br>
<br>

<h4>Take the Green Pill - ETHDenver 2022 </h4>
<iframe width="650" height="350" src="https://www.youtube.com/embed/qP7wqLWV33M?list=PLvTrX8LNPbPkED8-JxUsFMzoicKRmsrfn" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br>
<br>




Expand Down

0 comments on commit 7c7d0f8

Please sign in to comment.