Skip to content

Commit

Permalink
Fix: Update YAML parsing to parse in exportYAML method
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrykuku committed Dec 10, 2024
1 parent f31a58b commit df89812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Apps/AppPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1526,7 +1526,7 @@ export default {
* @return {*} void
*/
exportYAML () {
let title = YAML.parse(this.dockerComposeCommands)?.['x-casaos']?.['title']
let title = parse(this.dockerComposeCommands)?.['x-casaos']?.['title']
if (title) {
title = ice_i18n(title)
} else {
Expand Down

0 comments on commit df89812

Please sign in to comment.