diff --git a/playground/src/config/workspaces/policy.ts b/playground/src/config/workspaces/policy.ts index 69b198499..dc42ffa6e 100644 --- a/playground/src/config/workspaces/policy.ts +++ b/playground/src/config/workspaces/policy.ts @@ -3,7 +3,7 @@ import { OPTION_TYPE, optionCUE, optionJSON, optionTerminal, optionYAML } from ' import { deepFreeze } from '@helpers/deep-freeze'; export const policyWorkspace: Workspace = deepFreeze({ - enabled: false, + enabled: true, type: WORKSPACE.POLICY, title: 'Policy', description: 'In the Policy Workspace you can play around with multiple inputs: Policy, Input & Data.', diff --git a/playground/src/containers/app.tsx b/playground/src/containers/app.tsx index 9519d2a49..c24c4f92a 100644 --- a/playground/src/containers/app.tsx +++ b/playground/src/containers/app.tsx @@ -30,7 +30,7 @@ import { setupWorkspaceConfig } from '@helpers/workspace'; import { DropdownChange } from '@models/dropdown'; import { Example } from '@models/example'; import { HASH_KEY, hashParams } from '@models/hashParams'; -import { OPTION_TYPE, optionCUE } from '@models/options'; +import { OPTION_TYPE } from '@models/options'; import { WORKSPACE, Workspace, Workspaces, WorkspaceTab } from '@models/workspace'; interface AppProps @@ -270,7 +270,7 @@ export class App extends React.Component actions: { format: { show: true, - disabled: tab.selected.value !== optionCUE.value + disabled: false, }, }, } }