Skip to content

Commit

Permalink
Merge pull request #82 from HeriLFIU/UI_buttonFix
Browse files Browse the repository at this point in the history
UI Button Fix
  • Loading branch information
viniarck authored Sep 11, 2024
2 parents 040a478 + 09d05e1 commit 6befc9d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ All notable changes to the Kytos-NG UI project will be documented in this file.
UNRELEASED - Under development
******************************

[2024.1.0-b2] - 2024-09-10
***********************

Fixed
=======
- Fixed buttons within ``interfaceInfo.vue`` that were using old ``on_click``.

[2024.1.0-b1] - 2024-08-05
***********************

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kytos-web-ui",
"description": "Kytos-NG Web-ui project",
"version": "2024.1.0-b1",
"version": "2024.1.0-b2",
"author": "Beraldo Leal <[email protected]>",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/kytos/interfaceInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
</div>
<k-textarea title="Set tag_ranges" icon="arrow-right" placeholder="Eg. [[100, 200], [400, 4095]]" v-model:value="new_tag_ranges"></k-textarea>
<div class="metadata_container">
<k-button title="Set tag_ranges" :on_click="set_tag_ranges"></k-button>
<k-button title="Set tag_ranges" @click="set_tag_ranges"></k-button>
</div>
</k-accordion-item>
<k-accordion-item title="Metadata" v-if="Object.keys(this.metadata_items).length !== 0">
Expand Down

0 comments on commit 6befc9d

Please sign in to comment.