mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix removing hot bar item
Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com> Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
parent
feb983c42c
commit
a311355784
@ -73,17 +73,17 @@ class NonInjectedHotbarMenu extends React.Component<Dependencies & HotbarMenuPro
|
|||||||
this.props.hotbarStore.restackItems(from, to);
|
this.props.hotbarStore.restackItems(from, to);
|
||||||
}
|
}
|
||||||
|
|
||||||
removeItem(uid: string) {
|
removeItem = (uid: string) => {
|
||||||
const hotbar = this.props.hotbarStore;
|
const hotbar = this.props.hotbarStore;
|
||||||
|
|
||||||
hotbar.removeFromHotbar(uid);
|
hotbar.removeFromHotbar(uid);
|
||||||
}
|
};
|
||||||
|
|
||||||
addItem(entity: CatalogEntity, index = -1) {
|
addItem = (entity: CatalogEntity, index = -1) => {
|
||||||
const hotbar = this.props.hotbarStore;
|
const hotbar = this.props.hotbarStore;
|
||||||
|
|
||||||
hotbar.addToHotbar(entity, index);
|
hotbar.addToHotbar(entity, index);
|
||||||
}
|
};
|
||||||
|
|
||||||
getMoveAwayDirection(entityId: string, cellIndex: number) {
|
getMoveAwayDirection(entityId: string, cellIndex: number) {
|
||||||
const draggableItemIndex = this.hotbar.items.findIndex(item => item?.entity.uid == entityId);
|
const draggableItemIndex = this.hotbar.items.findIndex(item => item?.entity.uid == entityId);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user