Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
skique committed Sep 12, 2024
1 parent 238f2a8 commit 944d23b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
11 changes: 5 additions & 6 deletions web/src/materials/setters/widgets/QuotaConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div v-html="cleanRichTextWithMediaTag(scope.row.text)"></div>
</template>
</el-table-column>
<el-table-column property="quota" style="width: 50%;">
<el-table-column property="quota" style="width: 50%">
<template #header>
<div style="display: flex; align-items: center">
<span>配额设置</span>
Expand Down Expand Up @@ -95,7 +95,7 @@ const cancel = () => {
}
const confirm = () => {
dialogVisible.value = false
// 更新选项
// 更新选项
handleQuotaChange()
emit(FORM_CHANGE_EVENT_KEY, {
options: optionData.value,
Expand Down Expand Up @@ -151,11 +151,11 @@ watch(
width: 90%;
display: flex;
justify-content: flex-end;
:deep(.cell){
:deep(.cell) {
line-height: 35px;
}
.quota-no-display{
padding-top: 8px
.quota-no-display {
padding-top: 8px;
}
}
.quota-title {
Expand All @@ -169,7 +169,6 @@ watch(
color: #ffa600;
cursor: pointer;
font-size: 14px;
}
.dialog {
width: 41vw;
Expand Down
1 change: 0 additions & 1 deletion web/src/render/components/QuestionWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ const props = defineProps({
return {}
}
}
}
})
const emit = defineEmits(['change'])
const questionStore = useQuestionStore()
Expand Down

0 comments on commit 944d23b

Please sign in to comment.