Skip to content

Commit

Permalink
Insert new Bundle from modal ✅
Browse files Browse the repository at this point in the history
  • Loading branch information
thombehrens committed Nov 14, 2024
1 parent 7c140f4 commit e276b39
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ export default class EditIndicatorBundle extends LightningElement {


saveMetaDataRecord() {
deployIndicatorBundles({wrapper: [this.indicator_Bundle]})
deployIndicatorBundles({ wrapper: JSON.stringify({ 'indicatorBundle': this.indicator_Bundle }) })
.then(result => {
console.log('deploymentId = result');
console.log('deploymentId = ' + result);
})
.catch(error => {
console.log(error);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<lightning-modal-body>
<div class="slds-is-relative slds-container_fluid">
Hello world from editIndicatorBundleModal
<c-edit-indicator-bundle></c-edit-indicator-bundle>
</div>
</lightning-modal-body>

Expand Down

0 comments on commit e276b39

Please sign in to comment.