Skip to content

Commit

Permalink
fix: no debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
skique committed Aug 26, 2024
1 parent 02be338 commit 6073f71
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const onSave = async () => {
}
const seize = async () => {
const seizeRes: Record<string, any> = await seizeSession({ sessionId })
const seizeRes: Record<string, any> = await seizeSession({ sessionId:sessionId.value })
if (seizeRes.code === 200) {
location.reload();
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ const tabSelected = ref<string>('0')
box-shadow: none;
border: none;
display: flex;
// flex-direction: column;
:deep(.el-tabs__nav) {
width: 100%;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ watch(
height: 100%;
border: none;
display: flex;
// flex-direction: column;
.el-tabs__nav {
width: 100%;
Expand Down
1 change: 0 additions & 1 deletion web/src/render/stores/survey.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ export const useSurveyStore = defineStore('survey', () => {
const initSurvey = (option) => {

setEnterTime()
debugger
if (!canFillQuestionnaire(option.baseConf, option.submitConf)) {
return
}
Expand Down

0 comments on commit 6073f71

Please sign in to comment.