* fix(container): select runtime by default * fix(network): set default network config * fix(container): set default network container placeholder * fix(services): default service mount
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
export function MacvlanFormData() {
|
|
this.Scope = 'local';
|
|
this.SelectedNetworkConfig = null;
|
|
this.DatatableState = {
|
|
selectedItems: [],
|
|
};
|
|
this.ParentNetworkCard = '';
|
|
}
|