mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Preventing save with empty yaml
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
3080c25c81
commit
cb4f47e18d
@ -39,6 +39,7 @@ export class CreateResource extends React.Component<Props> {
|
|||||||
|
|
||||||
create = async () => {
|
create = async () => {
|
||||||
if (this.error) return;
|
if (this.error) return;
|
||||||
|
if (!this.data.trim()) return; // do not save when field is empty
|
||||||
const resources = jsYaml.safeLoadAll(this.data)
|
const resources = jsYaml.safeLoadAll(this.data)
|
||||||
.filter(v => !!v) // skip empty documents if "---" pasted at the beginning or end
|
.filter(v => !!v) // skip empty documents if "---" pasted at the beginning or end
|
||||||
const createdResources: string[] = [];
|
const createdResources: string[] = [];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user