Skip to content

Commit

Permalink
Merge pull request #93 from BC-SECURITY/release/2.7.2
Browse files Browse the repository at this point in the history
v2.7.2 into main
  • Loading branch information
vinnybod authored Jan 31, 2024
2 parents 06b8b10 + fbaca42 commit 3996a48
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.7.2] - 2024-01-31

### Fixed

- Deleting agent from the action menu on the table now works

## [2.7.1] - 2023-12-03

### Changed
Expand Down Expand Up @@ -343,7 +349,9 @@ Including but not limited to:

- Initial Release

[Unreleased]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.1...HEAD
[Unreleased]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.2...HEAD

[2.7.2]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.1...v2.7.2

[2.7.1]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.0...v2.7.1

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "starkiller",
"version": "2.7.1",
"version": "2.7.2",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
1 change: 1 addition & 0 deletions src/components/agents/AgentsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
:selected-tags="selectedTags"
:refresh-agents="autoRefresh"
@refresh-tags="getTags"
@kill-agent="killAgent"
/>
</template>
</advanced-table>
Expand Down
2 changes: 1 addition & 1 deletion src/components/agents/AgentsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ export default {
this.agentStore.getAgents();
},
async killAgent(item) {
this.$emit("killAgent", item);
this.$emit("kill-agent", item);
},
popout(item) {
window.open(
Expand Down

0 comments on commit 3996a48

Please sign in to comment.