mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
[ui] Fix Default command checkbox (#7104)
* [ui] Fix Default command checkbox * Regenerate static ui files
This commit is contained in:
2
pkg/apiserver-impl/ui/index.html
generated
2
pkg/apiserver-impl/ui/index.html
generated
@@ -11,6 +11,6 @@
|
||||
<body class="mat-typography">
|
||||
<div id="loading">Loading, please wait...</div>
|
||||
<app-root></app-root>
|
||||
<script src="runtime.1289ea0acffcdc5e.js" type="module"></script><script src="polyfills.8b3b37cedaf377c3.js" type="module"></script><script src="main.b3030afaec4e307d.js" type="module"></script>
|
||||
<script src="runtime.1289ea0acffcdc5e.js" type="module"></script><script src="polyfills.8b3b37cedaf377c3.js" type="module"></script><script src="main.d219859caca5567f.js" type="module"></script>
|
||||
|
||||
</body></html>
|
||||
File diff suppressed because one or more lines are too long
2
ui/src/app/api-gen/model/command.ts
generated
2
ui/src/app/api-gen/model/command.ts
generated
@@ -18,7 +18,7 @@ import { CompositeCommand } from './compositeCommand';
|
||||
export interface Command {
|
||||
name: string;
|
||||
group: string;
|
||||
_default?: boolean;
|
||||
default?: boolean;
|
||||
type: string;
|
||||
exec?: ExecCommand;
|
||||
apply?: ApplyCommand;
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
</mat-card-title>
|
||||
<mat-checkbox
|
||||
*ngIf="command.group != ''"
|
||||
[checked]="command._default"
|
||||
[checked]="command.default"
|
||||
(change)="toggleDefault($event, command.name, command.group)"
|
||||
>Default {{kind}} command</mat-checkbox>
|
||||
</div>
|
||||
@@ -23,7 +23,6 @@
|
||||
|
||||
<mat-card-content>
|
||||
|
||||
|
||||
<ng-container *ngIf="command.type == 'exec'">
|
||||
<table class="aligned">
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user