mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
default to showing all, ignore null
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
738a57af4f
commit
e218dfc4a7
@ -37,7 +37,7 @@ export class ReleaseDetails extends Component<Props> {
|
||||
@observable details: IReleaseDetails;
|
||||
@observable values = "";
|
||||
@observable valuesLoading = false;
|
||||
@observable userSuppliedOnly = true;
|
||||
@observable userSuppliedOnly = false;
|
||||
@observable saving = false;
|
||||
@observable releaseSecret: Secret;
|
||||
|
||||
@ -76,7 +76,7 @@ export class ReleaseDetails extends Component<Props> {
|
||||
|
||||
this.values = "";
|
||||
this.valuesLoading = true;
|
||||
this.values = await getReleaseValues(release.getName(), release.getNs(), !this.userSuppliedOnly);
|
||||
this.values = (await getReleaseValues(release.getName(), release.getNs(), !this.userSuppliedOnly)) ?? "";
|
||||
this.valuesLoading = false;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user