我正在尝试使用 'git add -p' 仅提交我的一部分代码。在下面的差异中,我想将“模型”重命名为“共享数据”(因此,删除模型行并添加共享数据行)。
@@ -58,9 +60,11 @@
</div>
`
})
export class PanelComponent implements OnInit, OnPanelAction, OnDestroy {
- @Input() data: any;
- @Input() model: any;
+ @Input() sharedData: any;
+ @Input() model: Wrapper<any>;
+ @Input() window: string;
+
@Input() map: Map.WindowMapper;
@Input() modules: any[];
我尝试使用多个设置在上下文中添加不必要的行(添加空格),但我得到“您编辑的块不适用。”:
@@ -58,9 +60,12 @@
@@ -58,12 +60,12 @@
</div>
`
})
export class PanelComponent implements OnInit, OnPanelAction, OnDestroy {
@Input() data: any;
- @Input() model: any;
+ @Input() sharedData: any;
@Input() model: Wrapper<any>;
@Input() window: string;
@Input() map: Map.WindowMapper;
@Input() modules: any[];
删除上下文行也不起作用:
@@ -58,9 +60,8 @@
</div>
`
})
export class PanelComponent implements OnInit, OnPanelAction, OnDestroy {
- @Input() model: any;
+ @Input() sharedData: any;
@Input() map: Map.WindowMapper;
@Input() modules: any[];