jazz icon indicating copy to clipboard operation
jazz copied to clipboard

Allow eliding owner and new NestedClass if owner is the same

Open aeplay opened this issue 1 year ago • 1 comments

Before

  var pipeline = new Pipeline({
    pipelineId: "test",
    environments: new ListOfEnvironments([
      new Environment({
        name: "L3",
        status: "RUNNING",
        executionId: "execId",
      },{ owner })
    ],{ owner }),
  }, { owner });

After

  var pipeline = new Pipeline({
    pipelineId: "test",
    environments: [
      {
        name: "L3",
        status: "RUNNING",
        executionId: "execId",
      }
    ],
  }, { owner });

Thanks @markmelville

aeplay avatar Apr 27 '24 17:04 aeplay

In progress as part of https://github.com/garden-co/jazz/pull/1547

gdorsi avatar Apr 29 '25 15:04 gdorsi

Landed!

gdorsi avatar Sep 11 '25 14:09 gdorsi