mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
fix: default groupId never set for strategies (only in ui)
This commit is contained in:
parent
c7b84ba5de
commit
b3846225f6
@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
The latest version of this document is always available in
|
The latest version of this document is always available in
|
||||||
[releases][releases-url].
|
[releases][releases-url].
|
||||||
|
|
||||||
|
## [3.2.19]
|
||||||
|
- fix: default groupId never set for strategies (only in ui)
|
||||||
|
|
||||||
## [3.2.18]
|
## [3.2.18]
|
||||||
- fix: clean up history view a bit
|
- fix: clean up history view a bit
|
||||||
|
|
||||||
|
@ -190,7 +190,7 @@ class StrategyConfigure extends React.Component {
|
|||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
if (name === 'groupId' && !value) {
|
if (name === 'groupId' && !value) {
|
||||||
value = this.props.featureToggleName;
|
this.setConfig('groupId', this.props.featureToggleName);
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div key={name}>
|
<div key={name}>
|
||||||
|
Loading…
Reference in New Issue
Block a user