-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
Missing "Tenant Mode" selector in SuperAdmin Settings #2767
Comments
Thank you for creating a bug. Please make sure your bug is indeed a unique case by checking current and past issues, and reading the complete documentation at https://docs.cipp.app/ Without confirming, your report will be closed in 24 hours. If you'd like this bug to be assigned to you, please comment "I would like to work on this please!". |
I confirm that I have checked the documentation thoroughly and believe this to be an actual bug |
I confirm that I have checked the documentation thoroughly and believe this to be an actual bug. |
I am also having this issue |
Looks like the following is missing from src/views/cipp/app-settings/SettingsSuperAdmin.jsx after line 68: <CRow>
<CCol sm={12} md={12} className="mb-3">
<p className="fw-lighter">Tenant Mode</p>
<Form
onSubmit={onSubmit}
initialValues={partnerConfig.data}
render={({ handleSubmit }) => (
<>
{partnerConfig.isFetching && <CSpinner size="sm" className="me-2" />}
<CForm id="submitForm" onSubmit={handleSubmit}>
<RFFCFormRadio
name="TenantMode"
label="Multi Tenant - GDAP Mode"
value="default"
/>
<RFFCFormRadio
name="TenantMode"
label="Multi Tenant - Add Partner Tenant"
value="PartnerTenantAvailable"
/>
<RFFCFormRadio
name="TenantMode"
label="Single Tenant - Own Tenant Mode"
value="owntenant"
/>
</CForm>
</>
)}
/>
{webhookCreateResult.isSuccess && (
<CippCallout color="info" dismissible>
{webhookCreateResult?.data?.results}
</CippCallout>
)}
</CCol>
</CRow> This is now working for me after manually adding this back |
Fixed in dev |
Description
In the SuperAdmin Settings tab of Application Settings, Tenant Mode does not allow you to select an option.
Non-sponsored instance front end version 6.2.0 backend version 6.2.0
All caches cleared, different browser tested, "incognito" tested.
Re-sign in tested.
Inspected elements, noticed nothing renders for a drop down or selection box, and no errors in console for this to not be appearing.
I can see the network response of ExecPartnerMode?Action=ListCurrent responds with TenantMode: "default", but there is no component rendering.
The text was updated successfully, but these errors were encountered: