summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/sdc-app/onboarding/licenseModel
diff options
context:
space:
mode:
authorsvishnev <shlomo-stanisla.vishnevetskiy@amdocs.com>2018-04-17 11:32:22 +0300
committerEinav Keidar <einavw@amdocs.com>2018-04-17 09:07:36 +0000
commit04783c44c22de7ef4abe183c5f19b4136305e5f8 (patch)
treec952ad9e4b39b3ed55348bbe80574c8ddd102130 /openecomp-ui/src/sdc-app/onboarding/licenseModel
parent60969e02c6c8a78d8ffe9e597727c552c8be4e64 (diff)
sdc-ui buttons fix
Issue-ID: SDC-1237 Change-Id: I4912c7f9e81849ff68a4a5d432bf844f97cf031e Signed-off-by: svishnev <shlomo-stanisla.vishnevetskiy@amdocs.com>
Diffstat (limited to 'openecomp-ui/src/sdc-app/onboarding/licenseModel')
-rw-r--r--openecomp-ui/src/sdc-app/onboarding/licenseModel/entitlementPools/EntitlementPoolsEditorView.jsx4
-rw-r--r--openecomp-ui/src/sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsEditorView.jsx4
-rw-r--r--openecomp-ui/src/sdc-app/onboarding/licenseModel/limits/LimitEditor.jsx5
3 files changed, 6 insertions, 7 deletions
diff --git a/openecomp-ui/src/sdc-app/onboarding/licenseModel/entitlementPools/EntitlementPoolsEditorView.jsx b/openecomp-ui/src/sdc-app/onboarding/licenseModel/entitlementPools/EntitlementPoolsEditorView.jsx
index 46eda622b5..350dc0b9f8 100644
--- a/openecomp-ui/src/sdc-app/onboarding/licenseModel/entitlementPools/EntitlementPoolsEditorView.jsx
+++ b/openecomp-ui/src/sdc-app/onboarding/licenseModel/entitlementPools/EntitlementPoolsEditorView.jsx
@@ -427,7 +427,7 @@ class EntitlementPoolsEditorView extends React.Component {
<GridSection className="license-model-modal-buttons entitlement-pools-editor-buttons">
{!this.state.selectedLimit && (
<Button
- btnType="default"
+ btnType="primary"
disabled={!this.props.isFormValid || isReadOnlyMode}
onClick={() => this.submit()}
type="reset">
@@ -436,7 +436,7 @@ class EntitlementPoolsEditorView extends React.Component {
)}
<Button
btnType={
- this.state.selectedLimit ? 'default' : 'outline'
+ this.state.selectedLimit ? 'primary' : 'secondary'
}
onClick={() => this.props.onCancel()}
type="reset">
diff --git a/openecomp-ui/src/sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsEditorView.jsx b/openecomp-ui/src/sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsEditorView.jsx
index a820f28dfd..b53ce8f0a9 100644
--- a/openecomp-ui/src/sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsEditorView.jsx
+++ b/openecomp-ui/src/sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsEditorView.jsx
@@ -445,7 +445,7 @@ class LicenseKeyGroupsEditorView extends React.Component {
<GridSection className="license-model-modal-buttons license-key-group-editor-buttons">
{!this.state.selectedLimit && (
<Button
- btnType="default"
+ btnType="primary"
disabled={!this.props.isFormValid || isReadOnlyMode}
onClick={() => this.submit()}
type="reset">
@@ -454,7 +454,7 @@ class LicenseKeyGroupsEditorView extends React.Component {
)}
<Button
btnType={
- this.state.selectedLimit ? 'default' : 'outline'
+ this.state.selectedLimit ? 'primary' : 'secondary'
}
onClick={() => this.props.onCancel()}
type="reset">
diff --git a/openecomp-ui/src/sdc-app/onboarding/licenseModel/limits/LimitEditor.jsx b/openecomp-ui/src/sdc-app/onboarding/licenseModel/limits/LimitEditor.jsx
index 0d1d4eaf10..455daaa826 100644
--- a/openecomp-ui/src/sdc-app/onboarding/licenseModel/limits/LimitEditor.jsx
+++ b/openecomp-ui/src/sdc-app/onboarding/licenseModel/limits/LimitEditor.jsx
@@ -301,15 +301,14 @@ class LimitEditor extends React.Component {
</GridSection>
<GridSection className="limit-editor-buttons">
<Button
- btnType="outline"
+ btnType="primary"
disabled={!isFormValid || isReadOnlyMode}
onClick={() => this.submit()}
type="reset">
{i18n('Save')}
</Button>
<Button
- btnType="outline"
- color="gray"
+ btnType="secondary"
onClick={onCancel}
type="reset">
{i18n('Cancel')}