Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
zyronon committed Apr 2, 2024
1 parent 529557f commit 1fdb683
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 16 deletions.
12 changes: 0 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,5 @@
"vite-plugin-cdn-import": "0.3.5",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-imagemin": "^0.6.1"
},
"husky":{
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**": [
"prettier --write src/",
"eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"git add"
]
}
}
2 changes: 1 addition & 1 deletion src/components/slide/IndicatorLight.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default {
style={{
width: this.tabStyleWidth || 100 / this.tabTexts.length + '%'
}}
onClick={( ) => this.changeIndex(index)}
onClick={() => this.changeIndex(index)}
>
<span> {item}</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/login/countryChoose.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<div v-if="currentFixedIndicator" class="row no-active no-padding border index fixed">
<span>{{ currentFixedIndicator }}</span>
</div>
<div :key="name" v-for="(value, name) of countryOk">
<div :key="name" v-for="(value, name) of countryOk">
<div :class="name" class="row no-active no-padding border index">
<span>{{ name }}</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/message/chat/Chat.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ import { mapState } from 'pinia'
import Loading from '../../../components/Loading'
import { useBaseStore } from '@/store/pinia'
import { _checkImgUrl } from '@/utils'
import $ from "jquery";
import $ from 'jquery'
let CALL_STATE = {
REJECT: 0,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/people/FindAcquaintance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
</SlideHorizontal>

<transition name="fade">
<BaseMask v-if="maskDialog" @click="maskDialog = false"/>
<BaseMask v-if="maskDialog" @click="maskDialog = false" />
</transition>

<transition name="fade">
Expand Down

0 comments on commit 1fdb683

Please sign in to comment.