mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
18 lines
440 B
TypeScript
18 lines
440 B
TypeScript
import { getInjectable } from "@ogre-tools/injectable";
|
|
import dockStoreInjectable from "./store.injectable";
|
|
import type { TabId } from "./store";
|
|
|
|
const renameTabInjectable = getInjectable({
|
|
id: "rename-tab",
|
|
|
|
instantiate: (di) => {
|
|
const dockStore = di.inject(dockStoreInjectable);
|
|
|
|
return (tabId: TabId, title: string): void => {
|
|
dockStore.renameTab(tabId, title);
|
|
};
|
|
},
|
|
});
|
|
|
|
export default renameTabInjectable;
|