@spinnaker/kayenta 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dist/{index-6aa5a1a4.js → index-3a07fee8.js} +2 -2
- package/build/dist/index-3a07fee8.js.map +1 -0
- package/build/dist/index.js +1 -1
- package/build/dist/kayenta/canary.settings.d.ts +1 -0
- package/build/dist/kayenta/canary.settings.d.ts.map +1 -1
- package/build/dist/{lazy-94b6420d.js → lazy-330960fa.js} +2 -2
- package/build/dist/{lazy-94b6420d.js.map → lazy-330960fa.js.map} +1 -1
- package/build/dist/{semioticGraph-a9ade595.js → semioticGraph-a3ef25d3.js} +2 -2
- package/build/dist/{semioticGraph-a9ade595.js.map → semioticGraph-a3ef25d3.js.map} +1 -1
- package/package.json +1 -1
- package/src/kayenta/canary.settings.ts +1 -0
- package/src/kayenta/reducers/app.ts +1 -1
- package/build/dist/index-6aa5a1a4.js.map +0 -1
package/package.json
CHANGED
|
@@ -19,6 +19,7 @@ export interface ICanarySettings {
|
|
|
19
19
|
atlasGraphBaseUrl: string;
|
|
20
20
|
templatesEnabled: boolean;
|
|
21
21
|
manualAnalysisEnabled: boolean;
|
|
22
|
+
disableConfigEdit: boolean;
|
|
22
23
|
legacySiteLocalFieldsEnabled: boolean; // legacy fields for backwards-compat with old systems, no long term support planned
|
|
23
24
|
}
|
|
24
25
|
|
|
@@ -45,7 +45,7 @@ const configJsonModalTabState = handleActions(
|
|
|
45
45
|
ConfigJsonModalTabState.Edit,
|
|
46
46
|
);
|
|
47
47
|
|
|
48
|
-
const disableConfigEdit = handleActions<boolean>({}, false);
|
|
48
|
+
const disableConfigEdit = handleActions<boolean>({}, CanarySettings.disableConfigEdit ?? false);
|
|
49
49
|
|
|
50
50
|
export const app: Reducer<IAppState> = combineReducers<IAppState>({
|
|
51
51
|
executionsCount,
|