Merge pull request #145 from Permissionless-Software-Foundation/dh-remove-tag

style(alpha tag): Removed the 'Alpha' sticker
This commit is contained in:
Chris Troutner
2021-04-19 14:01:11 -07:00
committed by GitHub
2 changed files with 12 additions and 6 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ class JsonWebTokens extends React.Component {
id='jwt'
name='JWT'
placeholder='Enter FullStack.cash JWT'
label='FullStack.cash JWT'
label='Enter FullStack.cash JWT to increase rate limits.'
labelPosition='above'
onChange={_this.handleUpdate}
/>
+11 -5
View File
@@ -3,17 +3,23 @@ import React from 'react'
class VersionStatus extends React.Component {
constructor (props) {
super(props)
this.state = {}
this.state = {
show: false
}
}
render () {
return (
<>
<div className='version-status'>
<div>
<p><b>Warning: Open Alpha - things will break</b></p>
{this.state.show && (
<div className='version-status'>
<div>
<p>
<b>Warning: Open Beta - this app is under active develpment.</b>
</p>
</div>
</div>
</div>
)}
</>
)
}