Skip to content

Commit

Permalink
update ui
Browse files Browse the repository at this point in the history
  • Loading branch information
huangjien committed Jul 17, 2024
1 parent 9eb6d71 commit ff4aad2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [v0.2.31]
## [v0.2.33]

### New Feature

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jenkins-log-reader",
"displayName": "jenkins-log-reader",
"description": "read jenkins log, analyse with local AI.",
"version": "0.2.31",
"version": "0.2.33",
"engines": {
"vscode": "^1.91.0"
},
Expand Down
8 changes: 4 additions & 4 deletions src/panels/JenkinsPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ export class JenkinsPanel {
<section id="analysis-container" class="flex-wrap gap-1 h-full hidden" >
<details class="w-full" >
<summary class="flex flex-wrap m-1 p-1">
<p id="instruct" class="m2 p-2" ></p>
<vscode-button class="text-xs text-center h-6 w-20 self-center ml-4 rounded" id="analyse">Analyse</vscode-button>
<p id="instruct" class="m2 w-10/12 p-2" ></p>
<vscode-button class="text-xs text-center h-6 w-1/12 self-center ml-4 rounded" id="analyse">Analyse</vscode-button>
</summary>
<details class="w-full">
<summary class="text-xl font-bold text-white-600">Jenkins Build Log</summary>
Expand All @@ -168,8 +168,8 @@ export class JenkinsPanel {
<details class="w-full">
<summary class="text-xl font-bold text-white-600">AI Analysis</summary>
<div class="flex flex-wrap m-1 p-1 h-full">
<vscode-text-area rows="10" class="basis-10/12 max-w-5xl" resize="both" id="analysis" placeholder="Not Analysed Yet."></vscode-text-area>
<vscode-button class=" basis-1/12 text-xs text-center h-6 w-20 self-center ml-4 rounded" id="resolve">Resolve</vscode-button>
<vscode-text-area rows="10" class=" w-10/12" resize="both" id="analysis" placeholder="Not Analysed Yet."></vscode-text-area>
<vscode-button class=" w-1/12 text-xs text-center h-6 self-center ml-4 rounded" id="resolve">Resolve</vscode-button>
</div>
</details>
</details>
Expand Down

0 comments on commit ff4aad2

Please sign in to comment.