Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .releaserc.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- - "@semantic-release/npm"
- npmPublish: true
# - - "@semantic-release/npm"
# - npmPublish: true
- - "@semantic-release/changelog"
- changelogFile: "CHANGELOG.md"
- - "@semantic-release/github"
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-advanced-chat",
"version": "2.0.9",
"version": "2.1.2",
"license": "MIT",
"description": "A beautiful chat rooms component made with Vue.js - compatible with Vue, React & Angular",
"author": {
Expand Down Expand Up @@ -39,7 +39,8 @@
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"reset": "rm -rf node_modules && rm -rf package-lock.json && npm i",
"reset-all": "cd demo && npm run reset-all",
"pull-master": "git pull origin master --no-edit --no-ff"
"pull-main": "git pull origin main --no-edit --no-ff",
"prepare": "npm run build"
},
"typings": "types/index.d.ts",
"files": [
Expand Down
1 change: 0 additions & 1 deletion src/lib/RoomsList/RoomsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ export default {
// visible, automatically load more until either the list is "full"
// or roomsLoaded becomes true.
if (!this.loadingMoreRooms && visibleRooms.length < this.minimumVisibleRooms) {
this.loadingMoreRooms = true
this.loadMoreRooms()
}
}
Expand Down