Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
akurilov committed Dec 3, 2023
1 parent 6173338 commit 19ca3bf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 0 additions & 2 deletions web/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ body {
--placeholder-color: #999da1;
--ripple-duration: .45s;
--ripple-end-duration: .3s;
-webkit-user-select: none;
user-select: none;
cursor: default;
}
html.dark body {
Expand Down
6 changes: 5 additions & 1 deletion web/sub-details.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@
<div id="sub_new" class="m-2 flex-1 flex flex-col" style="display: flex">
<p class="text-lg">Subscription Details</p>
<div class="flex">
<span class="pt-1">Id:</span>
<span class="pt-1">Id</span>
<span id="subId" class="ml-1 pt-1 font-mono"></span>
</div>
<div class="flex">
<label class="pt-1">Description</label>
<input type="text" id="subDescr" class="ml-1">
</div>
<form class="space-y-2">
<div class="container">
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion web/sub-details.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function loadSubscription() {
})
.then(data => {
if (data != null) {
console.log(JSON.stringify(data));
document.getElementById("subDescr").value = data.description;
editor.setValue(data.cond);
}
})
Expand Down

0 comments on commit 19ca3bf

Please sign in to comment.