Skip to content

Commit

Permalink
fix:warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Apr 26, 2024
1 parent 82a1625 commit 2b061e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
### 🐛 Bug Fixes

- Using camel-case variable names in POJOs #99
- WfRunsListPersistentSearchHistory state is not being save properly #102
- WfRunsListPersistentSearchHistory state is not being saved properly #102
- Fix updating logs from non-EDT #101

## 1.14.0
Expand Down Expand Up @@ -296,7 +296,7 @@
### Changed

- Clean up code on `GhActionsManagerConfigurable` by @cunla in https://github.com/cunla/ghactions-manager/pull/71
- Logpanel wrap by @cunla in https://github.com/cunla/ghactions-manager/pull/72
- LogPanel wrap by @cunla in https://github.com/cunla/ghactions-manager/pull/72

## 1.7.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ class OutdatedVersionAnnotator : Annotator {
if (!element.isValid || element !is YAMLKeyValue) {
return
}
val yamlKeyValue = element as YAMLKeyValue
when (yamlKeyValue.keyText) {
FIELD_USES -> highlightAction(yamlKeyValue, holder)
when (element.keyText) {
FIELD_USES -> highlightAction(element, holder)
}
}

Expand Down

0 comments on commit 2b061e4

Please sign in to comment.