Skip to content

Commit

Permalink
updated lib
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Jun 18, 2024
1 parent 9399816 commit 979f805
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@fontsource/orbitron": "^5.0.19",
"@popperjs/core": "^2.11.8",
"@webosbrew/caniroot": "^1.0.1",
"@webosbrew/caniroot": "^1.0.2",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"gsap": "^3.12.5",
Expand Down
14 changes: 7 additions & 7 deletions src/views/can-i-root/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ class App extends Component<AppProps, AppState> {
onInput=${(e: TargetedInputEvent<HTMLInputElement>) => this.searchChanged(e.currentTarget.value)}/>
${state.term && (state.model ?
html`
<div class="alert alert-success mt-3" role="alert">Found device ${state.model.otaId}, broadcast
region
<span> ${state.model.broadcast}</span>
</div>` :
<div class="alert alert-success mt-3" role="alert">Found otaId <code>${state.model.otaId}</code>,
broadcast <code>${state.model.broadcast}</code>, region <code>${state.model.region}</code>
</div>
<hr/>` :
html`
<div class="alert alert-warning mt-3" role="alert">Device not found!</div>`
) && html`
<hr/>`}
<div class="alert alert-warning mt-3" role="alert">Device not found!</div>
<hr/>`
)}
${this.exploits.map(exploit => {
const avail = state.availability?.[exploit.key];
Expand Down

0 comments on commit 979f805

Please sign in to comment.