add view on other client buttons mobile

This commit is contained in:
plebeius.eth
2023-09-15 10:33:38 +02:00
parent 5c72bc69e1
commit b826f332d6
2 changed files with 56 additions and 0 deletions
+28
View File
@@ -2804,6 +2804,20 @@ const Board = () => {
</>
) : null
}
<a style={{color: 'inherit', textDecoration: 'none'}}
href={`https://plebbitapp.eth.limo/#/p/${selectedAddress}`}
target="_blank" rel="noreferrer">
<li onClick={() => handleOptionClick(thread.cid)}>
View on plebbit
</li>
</a>
<a style={{color: 'inherit', textDecoration: 'none'}}
href={`https://plebones.netlify.app/#/p/${selectedAddress}`}
target="_blank" rel="noreferrer">
<li onClick={() => handleOptionClick(thread.cid)}>
View on plebones
</li>
</a>
</ul>
</PostMenuMobile>, document.body
)}
@@ -3134,6 +3148,20 @@ const Board = () => {
</>
) : null
}
<a style={{color: 'inherit', textDecoration: 'none'}}
href={`https://plebbitapp.eth.limo/#/p/${selectedAddress}`}
target="_blank" rel="noreferrer">
<li onClick={() => handleOptionClick(reply.cid)}>
View on plebbit
</li>
</a>
<a style={{color: 'inherit', textDecoration: 'none'}}
href={`https://plebones.netlify.app/#/p/${selectedAddress}`}
target="_blank" rel="noreferrer">
<li onClick={() => handleOptionClick(reply.cid)}>
View on plebones
</li>
</a>
</ul>
</PostMenuMobile>, document.body
)}
+28
View File
@@ -1856,6 +1856,20 @@ const Thread = () => {
</>
) : null
}
<a style={{color: 'inherit', textDecoration: 'none'}}
href={`https://plebbitapp.eth.limo/#/p/${selectedAddress}`}
target="_blank" rel="noreferrer">
<li onClick={() => handleOptionClick(comment.cid)}>
View on plebbit
</li>
</a>
<a style={{color: 'inherit', textDecoration: 'none'}}
href={`https://plebones.netlify.app/#/p/${selectedAddress}`}
target="_blank" rel="noreferrer">
<li onClick={() => handleOptionClick(comment.cid)}>
View on plebones
</li>
</a>
</ul>
</PostMenuMobile>, document.body
)}
@@ -2151,6 +2165,20 @@ const Thread = () => {
</>
) : null
}
<a style={{color: 'inherit', textDecoration: 'none'}}
href={`https://plebbitapp.eth.limo/#/p/${selectedAddress}`}
target="_blank" rel="noreferrer">
<li onClick={() => handleOptionClick(reply.cid)}>
View on plebbit
</li>
</a>
<a style={{color: 'inherit', textDecoration: 'none'}}
href={`https://plebones.netlify.app/#/p/${selectedAddress}`}
target="_blank" rel="noreferrer">
<li onClick={() => handleOptionClick(reply.cid)}>
View on plebones
</li>
</a>
</ul>
</PostMenuMobile>, document.body
)}