Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…tion-browser into webdev-7228-reconsolidation-item-removal
  • Loading branch information
nsharma123 committed Jan 16, 2025
2 parents 92c0b12 + aeae204 commit dc33e06
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "The Internet Archive Collection Browser.",
"license": "AGPL-3.0-only",
"author": "Internet Archive",
"version": "2.7.6-alpha2",
"version": "2.7.6",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
Expand All @@ -13,7 +13,7 @@
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
"circular": "madge --circular --extensions ts .",
"test": "tsc && yarn run circular && wtr --coverage",
"test": "tsc && yarn run lint && yarn run circular && wtr --coverage",
"test:fast": "tsc && wtr --coverage",
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"",
"deploy": "yarn run deploy:run -e $(git branch --show-current)",
Expand Down
2 changes: 1 addition & 1 deletion src/app-root.ts
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ export class AppRoot extends LitElement {
.modalManager=${this.modalManager}
.analyticsHandler=${this.analyticsHandler}
.pageContext=${'search'}
.activeTabId=${'uploads'}
.activeTabId=${''}
@visiblePageChanged=${this.visiblePageChanged}
@baseQueryChanged=${this.baseQueryChanged}
@searchTypeChanged=${this.searchTypeChanged}
Expand Down
2 changes: 1 addition & 1 deletion src/collection-browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export class CollectionBrowser
/**
* If item management UI active
*/
@property({ type: Boolean }) isManageView = true;
@property({ type: Boolean }) isManageView = false;

@property({ type: Boolean }) hasItemsDeleted = true;

Expand Down

0 comments on commit dc33e06

Please sign in to comment.