Skip to content

Commit

Permalink
format code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jianyi-gronk committed Jan 28, 2024
1 parent e207cac commit d261024
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ui-vue3/src/views/resources/services/tabs/debug.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,12 @@ const createEditor = (element: HTMLElement) => {
fontSize: 14,
lineNumbers: 'off',
roundedSelection: true
});
})
}
onMounted(() => {
createEditor(requestEditor.value![0]);
createEditor(responseEditor.value![0]);
createEditor(requestEditor.value![0])
createEditor(responseEditor.value![0])
})
</script>
<style lang="less" scoped>
.__container_services_tabs_debug {
Expand Down

0 comments on commit d261024

Please sign in to comment.