Skip to content

Commit

Permalink
fix: 解决控制台报错问题 (#7299)
Browse files Browse the repository at this point in the history
  • Loading branch information
igophper authored Dec 10, 2024
1 parent db7180a commit b7702da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/src/views/container/compose/create/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
:indent-with-tab="true"
:tabSize="4"
:lineWrapping="true"
:disabled="true"
:matchBrackets="true"
theme="cobalt"
:styleActiveLine="true"
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/views/container/compose/edit/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
:tabSize="4"
:lineWrapping="true"
:matchBrackets="true"
:disabled="true"
theme="cobalt"
:styleActiveLine="true"
:extensions="extensions"
Expand Down Expand Up @@ -93,7 +94,7 @@ const name = ref();
const environmentStr = ref();
const environmentEnv = ref();
const createdBy = ref();
const envFileContent = `env_file:\n - 1panel.env`;
const envFileContent = ref(`env_file:\n - 1panel.env`);
const onSubmitEdit = async () => {
const param = {
Expand Down

0 comments on commit b7702da

Please sign in to comment.