fix: secret env bug in firebase due to undefined value (#3881)

Co-authored-by: jamesgeorge007 <jamesgeorge998001@gmail.com>
This commit is contained in:
Nivedin
2024-03-13 17:11:51 +05:30
committed by GitHub
parent be7387ed19
commit 41d617b507
8 changed files with 26 additions and 24 deletions

View File

@@ -1,7 +1,8 @@
import { Environment } from "@hoppscotch/data"
import { cloneDeep, isEqual, uniqueId } from "lodash-es"
import { cloneDeep, isEqual } from "lodash-es"
import { combineLatest, Observable } from "rxjs"
import { distinctUntilChanged, map, pluck } from "rxjs/operators"
import { uniqueID } from "~/helpers/utils/uniqueID"
import { getService } from "~/modules/dioc"
import DispatchingStore, {
defineDispatchers,
@@ -22,7 +23,7 @@ const defaultEnvironmentsState = {
environments: [
{
v: 1,
id: uniqueId(),
id: uniqueID(),
name: "My Environment Variables",
variables: [],
},
@@ -100,7 +101,7 @@ const dispatchers = defineDispatchers({
}
: {
v: 1,
id: "",
id: uniqueID(),
name,
variables,
},
@@ -123,7 +124,7 @@ const dispatchers = defineDispatchers({
...environments,
{
...cloneDeep(newEnvironment),
id: uniqueId(),
id: uniqueID(),
name: `${newEnvironment.name} - Duplicate`,
},
],