Skip to content

Commit

Permalink
Bugfix default value cascade:false (#363)
Browse files Browse the repository at this point in the history
### Feature or Bugfix
- Bugfix

### Detail
- Added `cascade:false` default value for environment key/value tags

### Relates
- #362 

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.
  • Loading branch information
dlpzx authored Mar 13, 2023
1 parent d32ad6a commit 4bccf1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/KeyValueTags/KeyValueTagList.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const KeyValueTagList = ({ targetUri, targetType }) => {
<KeyValueTagUpdateForm
targetType={targetType}
targetUri={targetUri}
tags={items.length > 0 ? items : [{ key: '', value: '' }]}
tags={items.length > 0 ? items : [{ key: '', value: '', cascade: false }]}
closeUpdate={closeUpdate}
/>
) : (
Expand Down

0 comments on commit 4bccf1d

Please sign in to comment.