Skip to content

Commit

Permalink
Merge pull request #65 from HeriLFIU/UI_inputTooltip_Fix
Browse files Browse the repository at this point in the history
Input component tooltips now display properly
  • Loading branch information
viniarck authored Jun 10, 2024
2 parents 46f2b19 + 3c142c3 commit 2d0a569
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Changed

Fixed
=====
- Fixed tooltip for inputs not displaying
- Error handler properly showing the error message as text (Issue #60)

[2023.2.0] - 2024-02-16
Expand Down
2 changes: 1 addition & 1 deletion src/components/kytos/inputs/Input.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="k-input-wrap">
<icon v-if="icon && iconName" :icon="iconName"></icon>
<input :value="value" :id="id" class="k-input" :tooltip="tooltip" :placeholder="placeholder"
<input :value="value" :id="id" class="k-input" :title="tooltip" :placeholder="placeholder"
@input="updateText"
ref="inputValue"
v-bind:disabled="isDisabled" onshow="this.focus()" autofocus>
Expand Down

0 comments on commit 2d0a569

Please sign in to comment.