提交 174f63af 编写于 作者: D Daniel Imms

Fix layer breakers

上级 b2d72a05
......@@ -26,7 +26,7 @@ export class EnvironmentVariableInfoStale implements IEnvironmentVariableInfo {
return 'warning';
}
getActions(): { label: string, iconClass?: string, run: (target: HTMLElement) => void, commandId: string }[] {
getActions(): { label: string, iconClass?: string, run: () => void, commandId: string }[] {
return [{
label: localize('relaunchTerminalLabel', "Relaunch terminal"),
run: () => this._terminalService.getInstanceFromId(this._terminalId)?.relaunch(),
......
......@@ -102,5 +102,5 @@ export type ISerializableEnvironmentVariableCollection = [string, IEnvironmentVa
export interface IEnvironmentVariableInfo {
getInfo(): string;
getIcon(): string;
getActions?(): { label: string, iconClass?: string, run: (target: HTMLElement) => void, commandId: string }[];
getActions?(): { label: string, iconClass?: string, run: () => void, commandId: string }[];
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册