Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
fix: based on the review
Browse files Browse the repository at this point in the history
  • Loading branch information
lukicenturi committed Jun 5, 2024
1 parent 9c7456e commit 0554f9e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/components/forms/auto-complete/RuiAutoComplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -448,14 +448,14 @@ function getListeners(on: Record<string, Function | undefined>, $listeners: Reco
};
}
function setInputSelectionRange(start: number, end: number) {
function setSelectionRange(start: number, end: number) {
set(searchInputFocused, true);
get(textInput)?.setSelectionRange?.(start, end);
}
defineExpose({
setInputFocus,
setInputSelectionRange,
focus: setInputFocus,
setSelectionRange,
});
</script>

Expand Down
4 changes: 2 additions & 2 deletions src/components/overlays/menu/Menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export interface MenuProps {
openDelay?: number;
closeDelay?: number;
popper?: PopperOptions;
wrapperClass?: any;
menuClass?: any;
wrapperClass?: string | object | string[];
menuClass?: string | object | string[];
closeOnContentClick?: boolean;
persistOnActivatorClick?: boolean;
hint?: string;
Expand Down

0 comments on commit 0554f9e

Please sign in to comment.