We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e77f40d + b30405d commit 7a60608Copy full SHA for 7a60608
src/views/cipp/Extensions.jsx
@@ -67,6 +67,7 @@ export default function CIPPExtensions() {
67
path: 'api/ExecExtensionSync?Extension=' + integrationType,
68
})
69
}
70
+ disabled={disabled}
71
className="me-2"
72
>
73
<FontAwesomeIcon
@@ -198,6 +199,11 @@ export default function CIPPExtensions() {
198
199
)}
200
</CippCallout>
201
202
+ {listSyncExtensionResult?.data?.Results && (
203
+ <CippCallout color={listSyncExtensionResult.isSuccess ? 'success' : 'danger'}>
204
+ {listSyncExtensionResult?.data?.Results}
205
+ </CippCallout>
206
+ )}
207
</CippButtonCard>
208
</CCol>
209
{integration.mappingRequired && (
0 commit comments