Skip to content

Commit

Permalink
minor fixes (#30)
Browse files Browse the repository at this point in the history
 minor fixes
  • Loading branch information
dhananjay12 authored Apr 26, 2022
1 parent 53b8d04 commit 881605d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# backbase-services-toolkit Changelog

## [Unreleased]
### Update
- Minor fixes

## [0.0.4]
### Update
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pluginVersion = 0.0.5
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 203
pluginUntilBuild = 213.*
pluginUntilBuild = 223.*

# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
platformType = IC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class ConsumeEventAction : DumbAwareAction() {

val eventArtifact = MavenId("com.backbase.buildingblocks", "events", "")

if(file != null && project !=null && !MavenTools.findDependencyOnBom(project, file, eventArtifact)){
if(file == null || project ==null || !MavenTools.findDependencyOnBom(project, file, eventArtifact)){
e.presentation.isVisible = false
return
}
Expand Down
3 changes: 2 additions & 1 deletion src/main/kotlin/com/backbase/bst/wizard/SsdkStep.kt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ class SsdkStep(
row {
cell(isFullWidth = true) {
label("SSDK Version")
comboBox(DefaultComboBoxModel(ssdkVersions.toTypedArray()),
comboBox(
DefaultComboBoxModel(ssdkVersions.toTypedArray()),
projectId::ssdkVersion)
}
}
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
<description><![CDATA[ Description will be added by gradle build]]></description>
<actions>
<group id="ProjectViewPopupBackbaseMenu" text="Backbase" popup="true" icon="/icons/bb-horizontal16.svg">
<add-to-group group-id="ProjectViewPopupMenu" anchor="first"/>
<add-to-group group-id="ProjectViewPopupMenu" anchor="after"
relative-to-action="WeighingNewGroup"/>
</group>

<action id="actions.SearchGithubAction" class="com.backbase.bst.actions.SearchGoldenSamplesAction" text="Search Golden Samples"
Expand Down

0 comments on commit 881605d

Please sign in to comment.