Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ui): SAML should not be in Scale-up #3189

Merged
merged 2 commits into from
Dec 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 28 additions & 6 deletions frontend/web/components/modals/Payment.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,14 +278,23 @@ const Payment = class extends Component {
</div>
</Row>
</li>
<li>
<Row className='mb-3 pricing-features-item'>
<Icon
name='minus-circle'
fill='rgba(101, 109, 123, 0.16)'
/>
<div className='ml-2 disabled'>Audit Logs</div>
</Row>
</li>
<li>
<Row className='mb-3 pricing-features-item'>
<Icon
name='minus-circle'
fill='rgba(101, 109, 123, 0.16)'
/>
<div className='ml-2 disabled'>
2FA and SAML Authentication
Two-Factor Authentication (2FA)
</div>
</Row>
</li>
Expand All @@ -295,7 +304,9 @@ const Payment = class extends Component {
name='minus-circle'
fill='rgba(101, 109, 123, 0.16)'
/>
<div className='ml-2 disabled'>Audit Logs</div>
<div className='ml-2 disabled'>
SAML Authentication
</div>
</Row>
</li>
<li>
Expand Down Expand Up @@ -488,17 +499,28 @@ const Payment = class extends Component {
<span>
<Icon name='checkmark-circle' fill='#27AB95' />
</span>
<div className='ml-2'>
2FA and SAML Authentication
</div>
<div className='ml-2'>Audit Logs</div>
</Row>
</li>
<li>
<Row className='mb-3 pricing-features-item'>
<span>
<Icon name='checkmark-circle' fill='#27AB95' />
</span>
<div className='ml-2'>Audit Logs</div>
<div className='ml-2'>
Two-Factor Authentication (2FA)
</div>
</Row>
</li>
<li>
<Row className='mb-3 pricing-features-item'>
<Icon
name='minus-circle'
fill='rgba(101, 109, 123, 0.16)'
/>
<div className='ml-2 disabled'>
SAML Authentication
</div>
</Row>
</li>
<li>
Expand Down